使用API​​调用帐户作为接收者帐户

时间:2015-12-14 08:47:15

标签: ruby-on-rails paypal paypal-adaptive-payments activemerchant

我正在尝试使用Active Merchantactive_paypal_adaptive_payment gem整合Paypal自适应结帐。 在用户注册期间,用户需要注册他/她的paypal帐户才能在交易期间收到付款。

我已为activemerchant设置了所有凭据。在paypal中注册用户帐户时出现以下错误。

  

您正在登录此API调用者的帐户   交易。请更改您的登录信息,然后重试。

enter image description here 在结账时是否可以使用相同的API呼叫帐户作为辅助接收者?

谢谢,任何建议都将不胜感激。

1 个答案:

答案 0 :(得分:2)

您可以使用API​​来电者电子邮件地址和辅助收件人电子邮件地址相同的Chain Payments。当您使用api来电者的电子邮件作为付款发件人时,您会收到此错误You are logging into the account of the API caller of this transaction. Please change your login information and try again.

receiverList.receiver(0).email = YYY@gmail.com
receiverList.receiver(0).amount = 5.00
receiverList.receiver(0).primary = true
receiverList.receiver(1).email = XXX@gmail.com `this can be the api caller's email address as well`
receiverList.receiver(1).amount = 2.00
receiverList.receiver(1).primary = false
feesPayer = EACHRECEIVER