1

我尝试使用此位置https://svcs.sandbox.paypal.com/AdaptivePayments/Pay在soapUi 中测试一些贝宝服务。

我在沙盒环境中生成我的用户/密码/签名。我将此请求与生成的值一起提出:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"    xmlns:ap="http://svcs.paypal.com/types/ap">
<soapenv:Header>
<RequesterCredentials xmlns="urn:ebay:api:PayPalAPI"> 
<Credentials xmlns="urn:ebay:apis:eBLBaseComponents"> 
<Username>email@test.fr</Username> 
<Password>1378372813</Password> 
<Signature>AUM6025PrUAhjJbx1wnRiHOOgrv4AQc1xL50M13g83QoPe4uaxaBQJR.</Signature>     
<Subject /> 
</Credentials> 
</RequesterCredentials>
</soapenv:Header>
<soapenv:Body>
<ap:PayRequest>
<requestEnvelope>
<errorLanguage>en_US</errorLanguage>
<!--You may enter ANY elements at this point-->
</requestEnvelope>

<actionType>PAY</actionType>
<cancelUrl>cancelurl</cancelUrl>
<currencyCode>EUR</currencyCode>
<receiverList>
<!--1 or more repetitions:-->
<receiver>
<amount>2</amount>
<!--Optional:-->
<email>test@test.fr</email>

<!--Optional:-->
<paymentType>PERSONAL</paymentType>
</receiver>
</receiverList>
<returnUrl>urlReturn</returnUrl>
</ap:PayRequest>
</soapenv:Body>
</soapenv:Envelope>

响应为:2013-09-05T02:57:40.738-07:00 失败 fb8c36a4b879d 6941298 520003 平台应用程序错误应用程序身份验证失败。API 凭据不正确。

如果我忘记了肥皂头参数,你能告诉我吗?

问候。

史蒂文斯

4

1 回答 1

0

不要在soap标头中提供身份验证详细信息,而是尝试将它们作为http标头提供。请参阅以添加自定义标头以请求

于 2013-09-05T14:49:46.070 回答