gpt4 book ai didi

ruby-on-rails - 为什么 pp-adaptive 不接受我的退款金额?

转载 作者:太空宇宙 更新时间:2023-11-03 16:01:33 27 4
gpt4 key购买 nike

我正在尝试使用 pp-adaptive 实现部分 PayPal 退款,但它会全额退款,而不是我指定的金额。

我的代码:

    receiver_list = {receiver: [{ email: @transaction.email, amount: @amount}]}
attributes = {currency_code: "USD", pay_key: @transaction.paypal_token,
receiver_list: receiver_list}
response = client.execute(:Refund, attributes )

我想到问题可能是由于传递了错误的电子邮件而引起的,但我认为它实际上出在其他地方。我会用邮件解释这个问题:

API表示

The terms sender and receiver refer to sender and receivers of the original payment using the Pay API operation.

因此,接收方中的电子邮件字段应该是在原始交易中收到钱的 paypal 帐户的电子邮件字段。另一方面,在描述接收者字段的金额字段时,API 表示:

amount (Required) xs:decimal Amount to be credited to the receiver's account.

因为它说这笔金额将记入接收方,似乎 API 的编写者已经停止使用他们在开始时指定的约定,因为按照那个命名法,发件人应该是退款到他们帐户的人。

由于这种歧义,我尝试同时传递接收者的电子邮件和传递发件人的电子邮件。在这两种情况下,我都无法获得部分退款。

就像我说的,我认为问题出在其他地方,所以请考虑整个代码。

预先感谢您的回复。

最佳答案

我找到了问题的答案。我没有正确提出请求。以下代码和请求(将email替换为正确的)实现部分退款。

    receiver = {amount: @amount, email: “someone@somewhere.com"}
receiver_list = [receiver: receiver]
response = client.execute(:Refund, { currency_code: "USD", pay_key: @transaction.paypal_token, receiver_list: receiver_list} )

盘点一下区别,receiver列表应该是数组,receiver不应该是。

关于ruby-on-rails - 为什么 pp-adaptive 不接受我的退款金额?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24847823/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com