Skip to content
Advertisement

PayPal checkout buttons JS to PHP [closed]

I am new to paypal php sdk and I wanted to know how to use php with javascript. Here is the frontend code I use:

JavaScript

It works fine but I know that using javascript is not a good idea because the user can edit the informations of the order. For the onApprove I used my php code to call the paypal api to verify that the order is payed and the informations are correct but how can I get the informations of the order ?

Advertisement

Answer

To use PayPal Checkout from a server, create two routes, one for ‘Create Order’ and one for ‘Capture Order’, documented here. These routes should return/output only JSON data (no other HTML or text)

Pair your two routes with the following approval flow: https://developer.paypal.com/demo/checkout/#/pattern/server

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement