I create an order by my php sdk.
like this
JavaScript
x
4
1
$result = json_decode((string) $response->getBody());
2
3
echo $result->id; // id of the created order
4
and now i have this order id. but … How to pass order ID to Paypal Button? like this
JavaScript
1
32
32
1
`paypal.Buttons({
2
3
// Set up the transaction
4
createOrder: function(data, actions) { //I don't need create order,I have created an order
5
return actions.order.create({
6
purchase_units: [{
7
amount: {
8
value: '88.44'
9
}
10
}]
11
});
12
},
13
14
// Finalize the transaction
15
onApprove: function(data, actions) {
16
return actions.order.capture().then(function(orderData) {
17
// Successful capture! For demo purposes:
18
console.log('Capture result', orderData, JSON.stringify(orderData, null, 2));
19
var transaction = orderData.purchase_units[0].payments.captures[0];
20
alert('Transaction '+ transaction.status + ': ' + transaction.id + 'nnSee console for all available details');
21
22
// Replace the above to show a success message within this page, e.g.
23
// const element = document.getElementById('paypal-button-container');
24
// element.innerHTML = '';
25
// element.innerHTML = '<h3>Thank you for your payment!</h3>';
26
// Or go to another URL: actions.redirect('thank_you.html');
27
});
28
}
29
30
31
}).render('#paypal-button-container');
32
Advertisement
Answer
Create two routes on your server, one to create an order (and return the resulting JSON), and one that takes an order id as a parameter and captures it (and returns the JSON result).
Both of these routes should return/output only JSON (no HTML or text).
Pair those two routes with this approval flow: https://developer.paypal.com/demo/checkout/#/pattern/server