我已经按照这里看到的Paypal指南:https://developer.paypal.com/docs/api/quickstart/payments/在PHP中,虽然我似乎已经得到了流程的一部分,但客户端javascript似乎无法正常工作。
以下付款功能(Source here):
payment: function() {
// Set up a url on your server to create the payment
var CREATE_URL = '/demo/checkout/api/paypal/payment/create/';
// Make a call to your server to set up the payment
return paypal.request.post(CREATE_URL)
.then(function(res) {
return res.paymentID;
});
},
致电我的付款创建页面,该页面正确地吐出了sandbox.paypal.com/etc。页面,但面向客户端页面上的Paypal窗口立即关闭,没有任何错误。
如果我手动转到我的付款创建页面,抓住该网址并自行前往我可以登录,进行测试付款并转发到结束确认页面,这样我就知道链接本身很好,我只是不喜欢# 39;不知道为什么javascript会失败并关闭窗口。