Reputation: 2843
I have a system that simply registers a user. I need to intergrate this with PayPal so that only IF a user has paid can they have access their account. Paying involves confirming to a monthly payment, with the first month free. I need to use some PayPal API that will inform the user of the monthly fee, let's them subscribe, and then if it was a successful returns True to my PHP system so It can then activate the account.
So what do I need to do to get this process running? What will I need to do?
Upvotes: 0
Views: 56
Reputation: 9992
https://developer.paypal.com/ is a great place to start.
They offer guides and code libraries and examples there.
And as far your rest of the requirement, you can handle that in callback from paypal.
according to payment status and update your record and notify the user.
Upvotes: 1