connect website to paypal
Is there a possibility of connecting paypal account to website? Such as facebook connect? I want to make a verification tool which: 1. takes me to paypal website 2. wants me to log in 3. redirects me back to my website and sends some开发者_StackOverflow authorization data.
Is it possible to do it?
Paypal has great documentation on how to connect to it, including some SDK's and sample code (I don't see anything in Python, though). See https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/library_documentation
If you follow dcrodjer's link, you'll eventually find a link to a project called django-paypal on github, which might help you, too. (I'd post the link, but my reputation is not high enough yet to post more than one link in an answer).
Other than that library, and the official documentation, I'm not 100% sure what exactly you are trying to do. You don't really connect accounts like you do with Facebook, you mostly do one shot authorizations for purchases or recurring purchases. But check out the documentation, and you should be able to find what you need.
I found sample python code here. It helped me to integrate my website. Some technical documentation is here. However you may have some problems with testing this service because it is disabled for sandbox accounts. If you want to turn it on you have to make steps described here in section "Sandbox and Live access".
精彩评论