我正在使用Input
与node.js,尝试创建PayPal支出。我在这里复制了我的调用代码:
paypal-rest-sdk
我从PayPal得到的回复是500错误。上面的paypal.payout.create({
sender_batch_header: {
sender_batch_id: batchId,
email_subject: 'Payment Received',
},
items: [{
recipient_type: 'EMAIL',
amount: {
currency: 'USD',
value: bid.bidPrice / 2,
},
receiver: provider.email,
}],
}, 'true', {}, function (err, response) {
debugger;
// inspect err
});
就是这个对象:
err.response
我确实谷歌了{
name: 'INTERNAL_ERROR',
message: 'An internal service error has occurred.',
debug_id: '5053046dcea3',
information_link: 'https://developer.paypal.com/webapps/developer/docs/api/#INTERNAL_ERROR',
httpStatusCode: 500
}
但事实证明它只是发生错误的Paypal内部ID。
如果我错误地拨打PayPal的服务,或者他们遇到麻烦,我就不会这样做。我确实向PayPal提交了支持票。我可以采取的其他任何行动吗?
答案 0 :(得分:1)
如果您看到HTTP 500或INTERNAL_ERROR消息,则您在PayPal中遇到了错误。
请与请求/回复联系Merchant Technical Support。 (最重要的是debug_id
。)