HTTPS POST - Angular 19 - Paypal HttpErrorResponse "status: 401, error:...
My snippets of code'payment.service.ts'endpoint_url = "https://api-m.sandbox.paypal.com/v1/oauth2/token"autenticaService(): Observable<Object> { const auth =...
View ArticleThe Apple Pay button is not showing in the PayPal integration
I tested this code locally using the same .env with Ngrok and my server (rehosting localhost:3000 like Ngrok), and the button appears on both Mac and iPhone. However, when I deploy it on Netlify with a...
View ArticlePayPal Smart payment Button: Something went wrong. We'll take you back to...
I have tried to implement PayPal smart button from https://www.paypal.com/buttons/. In the end of the it shows "Something went wrong. We'll take you back to checkout so you can try again" error. I...
View ArticlePAYEE_NOT_ENABLED_FOR_CARD_PROCESSING - Error when creating an order with...
I'm getting the following error when attempting to create an Order in a Live Application:{"issue": "PAYEE_NOT_ENABLED_FOR_CARD_PROCESSING","description": "Payee account is not setup to be able to...
View ArticleAngular 19 . Paypal REST API - Request is not well-formed, syntactically...
Where i'm wrong??payment.service.ts autenticaService(): Observable<Object> { const uri = '/v1/oauth2/token'; const data = 'grant_type=client_credentials'; let body = new URLSearchParams();...
View ArticleHow to return to an App after completing payment when using PayPal API?
I'm developing an iOS app which uses PayPal as a payment platform.Paypal iOS SDK doesn't support my country, so I have to integrate PayPal using REST API.It was successful until the "order" api call...
View ArticlePayPal: How to pass customer email when creating an order?
Using https://developer.paypal.com/docs/checkout/ I create an order:<script> paypal.Buttons({ createOrder: function(data, actions) { // Set up the transaction return actions.order.create({...
View ArticlePayPal API Error: "The requested action could not be performed, semantically...
am integrating PayPal's REST API for processing payments in my React.js application, using the sandbox environment. While creating an order works fine, capturing the payment fails with the following...
View ArticlePayPal won't automatically redirect to my site after payment complete
For some reason PayPal won't redirect to my site after a payment is confirmed.I have set auto return and set a valid url.I have set a hidden param of return to the same url.It just shows me a payment...
View ArticlePaypal recurring payment error - Invalid path provided in patch request
Hello i am trying to create a subscription using the code below but i am getting an errorInvalid path provided in patch requestIt seems the script fails at activating the plan at // Activate the plan...
View ArticleHow to resolve Paypal API "SENDER_RESTRICTED" error
I'm making a payout request with the PayPal REST API.await axios.post('https://api-m.paypal.com/v1/payments/payouts', { sender_batch_header: { sender_batch_id: Math.random().toString(36).substring(2,...
View ArticleHow to integrate venmo with paypal in expo react native?
I want to integrate venmo as payment method in PayPal web view but venmo option is not showing.
View ArticlePayPal sandbox API doesn't allow users to log in
i am working on android studio developing mobile application. i have a payment feature and i integrated PayPal sandbox and when a user clicks check out , the PayPal page appears. however, when any...
View ArticleIs it not possible to set up order with (legacy) NVP SetExpressCheckout...
Working with a legacy system that is still using NVP functionality for everything, orders are being initialized with the SetExpressCheckout method and then payment captured with the...
View ArticleAdd additional charge to PayPal payment button
We have attached a PayPal $4 button in our web application. Now we are planning to add addition charge based on location. So What is the best possibility of add the additional charge to the PayPal...
View ArticleIs there a way to disable paypal Pay Later options on checkout using REST API?
I'm using the paypal REST API using PHP as backend. And the challenge I have is the pay in 4 and pay monthly options while I want instant full payment for less than 100$.Is there a way to disable it...
View ArticlePayPal: sudden "Payee(s) passed in transaction does not match expected...
We have a PayPal integration for a multi-merchant e-commerce site which has worked fine for the past two years. We've been having our members configure integration just by giving us the email address...
View ArticleBraintree Exception Authorization
We've a Java integration with Braintree... so here are our configurations:Paypal, a business account with an Api Credentials set in Live Mode (with a certain paypal_client_id and...
View ArticlePayPal Vaulting: billingToken is null in onApprove response
I am trying to vault a card using PayPal’s PayPalButtons, but I am not receiving the billingToken in the onApprove response.What I Have Tried:I have enabled Vaulting in the PayPal Developer Dashboard,...
View Articlereact-paypal-js does not expand guest checkout properly in production
I'm using the PayPal React TypeScript SDK for accepting payment on the frontend.My React component is defined as follows:import { PayPalButtons, PayPalScriptProvider } from...
View Article