我正在尝试编写代码以进行自适应支付的部分退款。
我已经阅读了https://developer.paypal.com/docs/classic/api/adaptive-payments/refund_api_operation/
这就是我的请求的样子
curl -s --insecure
-H "X-PAYPAL-SECURITY-USERID: api_username"
-H "X-PAYPAL-SECURITY-PASSWORD: api_password"
-H "X-PAYPAL-SECURITY-SIGNATURE: api_signature"
-H "X-PAYPAL-REQUEST-DATA-FORMAT: NV"
-H "X-PAYPAL-RESPONSE-DATA-FORMAT: NV"
-H "X-PAYPAL-APPLICATION-ID: your_app_id "
https://svcs.sandbox.paypal.com/AdaptivePayments/Refund -d
"requestEnvelope.errorLanguage=en_US
&requestEnvelope.detailLevel=ReturnAll
&transactionId=xxxxxxxxxx
¤cyCode=USD
&receiverList.receiver(0).amount=10.00"
原始交易金额> 10.00,我试图部分退还此付款
响应基本上是错误代码520002
的"内部错误"有什么想法?
弄清楚了这一点。基本上我还必须指定 receiverList.receiver(0).email
在我的请求中
疯狂的事情是,在贝宝的文档中,它清楚地说
receiverList.receiver(n).email
是The identified receiver's email address
receiverList.receiver(n).amount
是Amount to refund to the identified receiver
由于我部分退还给用户,因此电子邮件应该是用户的电子邮件,对吗?
错误,电子邮件必须是我的贝宝的帐户电子邮件
不要问我为什么,如果您从这种疯狂中有意义,请告诉我。
ps。感谢PayPal,返回一个非常有用的错误,称为internal error