我正在使用 Paypal NVP Refund Api 进行退款 Paypal 交易。一切正常,但当我尝试调用 api 时,它给出了以下响应。
Array
(
[TIMESTAMP] => 2017-07-17T13:58:24Z
[CORRELATIONID] => xxxxxxxxxx
[ACK] => Failure
[VERSION] => 51.0
[BUILD] => 36458220
[L_ERRORCODE0] => 10007
[L_SHORTMESSAGE0] => Permission denied
[L_LONGMESSAGE0] => You do not have permission to refund this transaction
[L_SEVERITYCODE0] => Error
)
是我想念的某个过程吗?
授予权限后,存在同样的问题。然后我发现我错过了一个论点..
我正在发送此请求。
$nvpreq = array(
'USER' => '',
'PWD' => '',
'SIGNATURE' => '',
'METHOD'=> 'RefundTransaction',
'VERSION' => urlencode('94'),
'TRANSACTIONID' => 'xxxxxxxx',
'REFUNDTYPE' => 'Partial',
'AMT' => '0.01',
'CURRENCYCODE' => 'USD');
我忘记添加 'SUBJECT' => 'reiceversemail@gmail.com',
。现在它正在运行。
我是一名优秀的程序员,十分优秀!