我正在使用PHP制作众筹网站,我正在使用预先批准和链式付款。
我能够以编程方式创建和取消预先批准的付款,但是当我尝试付款时,我收到错误:
580022 - 接收方位于无法接收付款的国家/地区
我有两个接收器,主要接收器获得95%的金额,并且是承诺的项目的所有者。 剩下的5%作为委托给我。
这两个接收者都有英国PayPal账户,我在沙盒中工作。
知道什么是错的吗?我希望这个功能在英国可以使用,否则我就会一无所获!
我正在使用此API进行付款:https://github.com/angelleye/paypal/
这是生成的XML,它被发送到paypal:
<?xml version="1.0" encoding="utf-8"?>
<PayRequest xmlns="http://svcs.paypal.com/types/ap">
<requestEnvelope xmlns="">
<detailLevel>ReturnAll</detailLevel>
<errorLanguage>en_US</errorLanguage>
</requestEnvelope>
<actionType xmlns="">PAY_PRIMARY</actionType>
<cancelUrl xmlns="">http://89.238.152.7/funding/error/cancelled</cancelUrl>
<clientDetails xmlns="">
<applicationId xmlns="">APP-80W284485P519543T</applicationId>
<customerId xmlns="">1</customerId>
<ipAddress xmlns="">92.27.172.254</ipAddress>
<partnerName xmlns="">The Funding Forum</partnerName>
</clientDetails>
<currencyCode xmlns="">GBP</currencyCode>
<feesPayer xmlns="">EACHRECEIVER</feesPayer>
<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="">http://89.238.152.7/paypal/ipn.php</ipnNotificationUrl>
<preapprovalKey xmlns="">PA-8EE05998ST379664R</preapprovalKey>
<receiverList xmlns="">
<receiver xmlns="">
<amount xmlns="">0.5</amount>
<email xmlns="">james_1351605562_per@design365.co.uk</email>
<paymentType xmlns="">GOODS</paymentType>
<primary xmlns="">true</primary>
</receiver>
<receiver xmlns="">
<amount xmlns="">0.02</amount>
<email xmlns="">james_1351605505_biz@design365.co.uk</email>
<paymentType xmlns="">GOODS</paymentType>
<primary xmlns="">false</primary>
</receiver>
</receiverList>
<sender>
<useCredentials xmlns="">
</useCredentials>
</sender>
<account xmlns="">
<email xmlns="">poeljames@gmail.com</email>
<phone xmlns="">
</phone>
</account>
<returnUrl xmlns="">http://89.238.152.7/funding/success/return</returnUrl>
</PayRequest>
有人可以帮忙吗?
谢谢,
答案 0 :(得分:1)
请在New paypal system has stopped working with my code中查看我的回答 问题在于Sandbox中的AppID。我们正在努力解决这个问题。
编辑:现在应该解决了。如果您发现任何其他问题,请与我们联系。