skip to Main Content

Paypal api – Paypal sandbox window closed on subscribe button click with "create_order_error : Token Failure"

Here is the code to create subscription and user consent from paypal sandbox. paypal.Buttons({ style: { shape: 'rect', color: 'white', layout: 'horizontal', label: 'subscribe', tagline: false, }, createSubscription: function(data, actions) { if( subscriber_id !== null ){ return actions.subscription.revise(subscriber_id, { 'plan_id':…

VIEW QUESTION

Paypal api – Subscriptions in PayPal

I am working on integrating Recurring Payments functionality in Asp.Net based application where people can subscribe to a Service where they will be paying a monthly amount. I am trying to achieve the same using PayPal's Subscription APIs. One another…

VIEW QUESTION

Paypal api – PayPal Smart-Buttons (Subscription) update_client_config_error

I am trying to implement the PayPal-Smart-Buttons to my website for a subscription. I copied the code from the PayPal docs (https://developer.paypal.com/docs/subscriptions/integrate/#subscriptions-with-smart-payment-buttons). So my code looks like this: <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> </head> <body> <script…

VIEW QUESTION
Back To Top
Search