【发布时间】:2014-04-07 09:32:21
【问题描述】:
我目前正在使用 PayPal Adaptive Payments API,使用 Angel Eyes Library
我正在使用 PayWithOptions.php(也称为:支付)
它的作用是通过单击按钮从我的 PayPal 帐户向客户的 PayPal 帐户发送付款。
我遇到了问题:
Invalid request parameter: institutionId with value 5
完整的错误:
[Ack] => Failure
[Build] => 9898581
[CorrelationID] => 2aa511de53ce9
[Timestamp] => 2014-03-05T02:59:16.748-08:00
[PayKey] => AP-63569347PY5071349
[PaymentExecStatus] => CREATED
[RedirectURL] => https://www.sandbox.paypal.com/webscr?cmd=_ap-payment&paykey=AP-63569347PY5071349
[PayXMLRequest] => ReturnAllen_USCREATEhttp://wattbux.com/a/APP-80W284485P519543T173.245.53.242USDEACHRECEIVERECHECKBALANCECREDITCARD9test@test.comSERVICEhttp://wattbux.com/a/
[PayXMLResponse] => 2014-03-05T02:59:16.748-08:00Success2aa511de53ce99898581AP-63569347PY5071349CREATED
[SetPaymentOptionsXMLRequest] => ReturnAllen_USAP-63569347PY507134951122USERNAME1DKAngellEYE_PHPClass
[SetPaymentOptionsXMLResponse] => 2014-03-05T02:59:17.054-08:00Failure2bc204d053e2f9898581580022PLATFORMApplicationErrorApplicationInvalid request parameter: institutionId with value 5institutionId5
这是 PHP 代码:
$InstitutionCustomer = array(
'CountryCode' => 'DK', // Required. 2 char code of the home country of the end user.
'DisplayName' => 'USERNAME', // Required. The full name of the consumer as known by the institution. 200 char max.
'InstitutionCustomerEmail' => 'PAYPAL@TEST.COM', // The email address of the consumer. 127 char max.
'FirstName' => '11', // Required. The first name of the consumer. 64 char max.
'LastName' => '22', // Required. The last name of the consumer. 64 char max.
'InstitutionCustomerID' => '1', // Required. The unique ID assigned to the consumer by the institution. 64 char max.
'InstitutionID' => '5' // Required. The unique ID assiend to the institution. 64 char max.
);
我不知道“IstitutionXXX”是什么——有人能解释一下吗?
【问题讨论】:
-
这里的旁注,你提到的PayWithOptions.php实际上是Pay和SetPaymentOptions的组合。 SetPaymentOptions 需要包含大多数人想要包含的有关交易的额外详细信息,因此我添加了该模板以使其更容易。
标签: php paypal paypal-adaptive-payments