Search code examples
paypaldesktop-application

How to use Paypal from a desktop application?


Is it possible to collect billing information and send it to Paypal from a desktop application the same way a webpage normally would?


Solution

  • Paypal uses the HTTP protocol to communicate. As long as you use that with your desktop application, it will work.

    As you can see from this Sample Code page, they are simply using apis to make HTTP Requests (cURL for the php example) to the paypal servers.