我正在集成新的 Paypal 智能支付按钮
<script src="https://www.paypal.com/sdk/js?...>
paypal.Buttons({
createOrder(data, actions) {
// ...
onApprove: function(data, actions) {
// Capture the funds from the transaction
return actions.order.capture().then(function(details) {
// Show a success message to your buyer
alert('Transaction completed by ' + details.payer.name.given_name);
});
}
).render('#paypal-button');
我在 Sandbox 中创建了一个应用程序,并为所有事件注册了 Webhooks。当触发付款时,我让一切正常,并触发 PAYMENT.CAPTURE.COMPLETED 类型的 webhook 事件。
我确定我在此过程中遗漏了一些东西,但我无法将此付款链接到付款人详细信息。我不知道付款人详细信息在哪里,所以我无法处理我这边的订单。
我搜索了整个 Google 和 PP 文档但没有成功,有人可以帮助我吗?谢谢!!