-1

我在我的网站上使用 PayPal REST API 进行退款选项。我用 Paypal 测试帐户下订单,一切都很好,但是当我尝试退款时,我得到“交易被拒绝”。我尝试退还全部金额、部分金额、货币更改……没有任何帮助。我也尝试处理新订单和一些旧订单(2 天前)。在这里我跑什么,我得到什么

curl -v https://api.sandbox.paypal.com/v1/payments/sale/*******/refund -H 'Content-Type:application/json'  -H 'Authorization: Bearer ***********' -d '{"amount":{"total":"5.00","currency":"JPY"}}'
* About to connect() to api.sandbox.paypal.com port 443 (#0)
*   Trying 173.0.82.78...
* Connected to api.sandbox.paypal.com (173.0.82.78) port 443 (#0)
* Initializing NSS with certpath: sql:/etc/pki/nssdb
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
* NSS: client certificate not found (nickname not specified)
* SSL connection using SSL_RSA_WITH_3DES_EDE_CBC_SHA
* Server certificate:
*   subject: CN=api.sandbox.paypal.com,OU=PayPal Production,O="PayPal, Inc.",L=San     Jose,ST=California,C=US
*   start date: Dec 06 00:00:00 2012 GMT
*   expire date: Dec 06 23:59:59 2016 GMT
*   common name: api.sandbox.paypal.com
*   issuer: CN=VeriSign Class 3 Secure Server CA - G3,OU=Terms of use at https://    www.verisign.com/rpa (c)10,OU=VeriSign Trust Network,O="VeriSign, Inc.",C=US
> POST /v1/payments/sale/**********/refund HTTP/1.1
> User-Agent: curl/7.29.0
> Host: api.sandbox.paypal.com
> Accept: */*
> Content-Type:application/json
> Authorization: Bearer ******************
> Content-Length: 44
> 
* upload completely sent off: 44 out of 44 bytes
< HTTP/1.1 400 Bad Request
< Server: Apache-Coyote/1.1
< Date: Sun, 25 Aug 2013 21:35:55 GMT
< Connection: close
< PayPal-Debug-Id: 6ccd19f66d117
< Content-Type: application/json
< Content-Length: 171
< Connection: close
< 
* Closing connection 0
{"name":"TRANSACTION_REFUSED","message":"{0}","information_link":"https://developer.paypal.com/webapps/developer/docs/api/#TRANSACTION_REFUSED","debug_id":"6ccd19f66d117"}

那么有什么问题呢?我检查了有关 PayPal 给我的链接,但他根本没有帮助我。我需要尽快让退款选项生效。

4

1 回答 1

1

原始交易以日元 (JPY) 进行,但您的 PayPal 账户中没有日元余额 - 因此,您以日元进行的所有交易都处于“无人认领”状态。登录卖家账户 ( https://www.sandbox.paypal.com ) 并转到个人资料->我的钱。在更多( PayPal 余额旁边)下,单击货币。然后,在选择新货币下拉列表中,选择日元并点击添加货币。您之前进行的交易应该会在几分钟内开始汇入帐户,之后您应该能够处理您的退款。

于 2013-08-26T06:06:48.483 回答