I'm opening the store using woocommerce. Can i setup the paypal checkout renew payment each month with php code ?
Anyone can help me ?
Related
I'm currently integrating the paypal recurring payment. I have some questions about integrating paypal system.
Users need to create the paypal account for recurring payment system?
Can we use this "Try the buttons" integration for paypal recurring payment?
https://developer.paypal.com/docs/checkout/
If users signup with the credit card without creating paypal account, can we get the credit card brand. last 4 digits, and expiration date?
Can we use php api to create recurring system with paypal account or credit cards?
Can we use api to apply subscriptions coupons?
Thank you.
Yes
Haven't seen that before, but you can simulate everything in a sandbox if that's what you are looking for.
If I recall correctly you don't get the last 4 digits, but you do get the expiration date.
Yes
Not sure, didn't have to implement that.
I'm trying to integrate paypal payments through card into rails app.
Normal one-time payments are working well. But I keep on getting the above response when I'm trying to make recurring payments. I've tried to enable that feature in paypal developer website but it says
Note: Live credentials are disabled for direct credit card processing in your app. We are processing your information and will email you when live API credentials are enabled.
But it is saying same from past few days. I've tried contacting them through online contact us but after three days they replied saying I have to add my credit card to the account. Do I need to add credit card for testing sandbox also?
You need to contact PayPal technical team at https://www.paypal-techsupport.com/app/ask , provide your sandbox PayPal account, they will enable DPRP for you.
Using ASP Classic
Paypal LIVE Express checkout
It shows the Payment Amount at the checkout, but the payment doesn't go through. The payment doesn't even leave customer's account. I have tried using my wife's paypal account to complete the checkout.
I am only using paypal checkout system and have added all the API information in expresscheckout.asp and paypalfunctions.asp
I have also tried adding these API options too, but still wouldnt work
L_PAYMENTREQUEST_n_NAMEm
L_PAYMENTREQUEST_n_NUMBERm
L_PAYMENTREQUEST_n_AMTm
L_PAYMENTREQUEST_n_QTYm
Any help would be great.... tks
When I am trying to change the payment solution from from 'PayPal Digital Goods (PayPal Express Checkout)' to 'Website payments Standard' in the sandbox, I get redirected to the live paypal site.
I have seen a similar question asked here which was resolved by adding the payment solution to the account by a paypal developer team member.
Any idea on how I can add the desired payment solution added?
Thanks in advance
Jami
i am using Paypal manager for the payment i successfully done with credit card payment with recurring payment profile from my website using PayPal manager. but now i want do recurring payment with express checkout using Paypal manager with recurring payment. i am able to do simple direct payment with express checkout using PayPal manager. i found some solution from google that we need to pass two variable
L_BILLINGAGREEMENTDESCRIPTION0 = "Your descriptor"
L_BILLINGTYPE0 = "RecurringPayments"
But i am not able to do recurring payment. I am not getting any error. but my payment have done simple payment not recurring.
Thanks in advance..
There are two things with Express Checkout. First you need to let know the whole process that you will also create some recurring payment profiles.
For that you set BillingType as RecurringPayments when you do doExpressCheckout request.
You will get the Token from paypal and later when user will be back on your site to confirm payment after signing in to Paypal you can use this token to create recurring payment profile the same way as you have done that with credit card.
So after confirming instead of sending doExpressCheckoutPayment you send createRecurringPaymentProfile request.
Of course you can also send doExpressCheckoutPayment if you want also to do some additional payment that is not recurring.