3

使用自适应支付的实时 API 凭据时出现此错误。

阅读 intrwebs 和文档,它必须对帐户权限做一些事情,但公平地说,我不知道是哪一个。接收者、API 持有者或应用程序

我已经创建了APP,拿到了密钥,它的状态是“自动批准”

我正在使用的请求是“基本并行付款”(从一个收件人到另一个收件人,或者更确切地说是从买方到卖方)

提供 API 密钥的帐户是经过业务验证的帐户,并且与已创建应用程序下的帐户相同。

设置为收款的账户也是经过验证的企业账户(关联银行支票账户)

下面是我发送的付款请求

<PayRequest xmlns="http://svcs.paypal.com/types/ap">
<requestEnvelope xmlns="">
<detailLevel>ReturnAll</detailLevel>
<errorLanguage>en_US</errorLanguage></requestEnvelope>
<actionType xmlns="">CREATE</actionType>
<cancelUrl xmlns="">[redacted]</cancelUrl>
<clientDetails xmlns=""><applicationId xmlns="">[redacted]</applicationId>
<customerId xmlns="">[redacted]</customerId>
<customerType xmlns="">buyer</customerType>
<ipAddress xmlns="">XXX.xxx.xxx.xxx</ipAddress>
<partnerName xmlns="">[redacted]</partnerName></clientDetails>
<currencyCode xmlns="">AUD</currencyCode>
<fundingConstraint xmlns="">
<allowedFundingType xmlns="">
<fundingTypeInfo xmlns="">
<fundingType xmlns="">ECHECK</fundingType></fundingTypeInfo>
<fundingTypeInfo xmlns="">
<fundingType xmlns="">BALANCE</fundingType></fundingTypeInfo>
<fundingTypeInfo xmlns=""><fundingType xmlns="">CREDITCARD</fundingType>
</fundingTypeInfo>
</allowedFundingType>
</fundingConstraint>
<ipnNotificationUrl xmlns="">[redacted]</ipnNotificationUrl>
<receiverList xmlns=""><receiver xmlns=""><amount xmlns="">2.00</amount>
<email xmlns="">recivers@pyapal.verifedaccount.com</email>
<paymentType xmlns="">GOODS</paymentType></receiver></receiverList>
<sender><useCredentials xmlns=""></useCredentials></sender>
<account xmlns=""><phone xmlns=""></phone></account>
<returnUrl xmlns="">[redacted]</PayRequest>

编辑:值得注意的是,我正在测试实时支付的网址可能是一个临时网址(不是生产)

4

1 回答 1

5

固定的。

FundingConstraint 导致了权限错误。

<fundingConstraint>
<fundingTypeInfo xmlns="">
   <fundingType xmlns="">ECHECK</fundingType>
</fundingTypeInfo>
<fundingTypeInfo xmlns="">
   <fundingType xmlns="">BALANCE</fundingType>
</fundingTypeInfo>
<fundingTypeInfo xmlns="">
   <fundingType xmlns="">CREDITCARD</fundingType>
</fundingTypeInfo>
</fundingConstraint>

来自 doco,第 11 页(粗体表示强调)

https://www.x.com/sites/default/files/2102_pp_adaptivepayments.pdf

fundingConstraint 新字段:ap:FundingConstraint 指定允许的付款资金类型列表。此列表可以按任何顺序排列。 如果省略此字段,则可以通过 Adaptive Payments 支持的任何资金类型为付款提供资金注意:此功能适用于具有特殊权限级别的应用程序。

我的印象是默认情况下这是必需的(进行简单付款)因此我正在使用它,但事实证明它可以正常工作并且没有它(所以它是可选的)。有点奇怪,因为我认为它应该是其他的方式(任何类型的特殊许可,对指定类型没有限制)

另外值得注意的是,当您创建应用程序时,不要被“确认您支持的资金来源”下的审批状态或复选框所迷惑。它们(ECHECK、信用卡、余额)在默认情况下都被选中,但似乎无论您是否需要在 APP 创建过程中指定的特殊权限,只需在复选框下方勾选“更改默认付款来源将需要额外的审核时间和特定的 PayPal 批准。

换句话说,该应用程序并未处于本说明所建议的“有条件批准”之下。

于 2013-05-30T09:49:29.447 回答