0
我使用paypal-rest-sdk
與node.js,試圖創建PayPal支出。我在此處複製了我的呼叫代碼:創建支付時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
});
我從PayPal得到的響應是500錯誤。 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
}
我做了谷歌debug_id
但事實證明,這只是對所發生的錯誤貝寶內部ID。
如果我錯誤地致電PayPal的服務,或者他們遇到問題,我不是。我確實向PayPal提交了支持票。我可以採取其他任何行動?
好的,謝謝。 – jcarpenter2