我目前无法使用PayPal沙盒来测试我的购物车集成。当我在浏览器中或通过卷曲访问沙箱时,我得到的只是连接错误。对PayPal沙盒的HTTPS请求失败
下面是一个例子卷曲会话:
curl -v "https://api-3t.sandbox.paypal.com/nvp?user=test"
* Trying 173.0.82.83...
* TCP_NODELAY set
* Connected to api-3t.sandbox.paypal.com (173.0.82.83) port 443 (#0)
* TLS 1.2 connection using TLS_RSA_WITH_AES_256_CBC_SHA256
* Server certificate: api-3t.sandbox.paypal.com
* Server certificate: Symantec Class 3 Secure Server CA - G4
* Server certificate: VeriSign Class 3 Public Primary Certification Authority - G5
> GET /nvp?user=test HTTP/1.1
> Host: api-3t.sandbox.paypal.com
> User-Agent: curl/7.51.0
> Accept: */*
>
* SSLRead() return error -9806
* Curl_http_done: called premature == 1
* Closing connection 0
curl: (56) SSLRead() return error -9806
任何提示,如果这是一个服务器端的问题,或者是我可以解决?
谢谢!
**更新**:在与沙箱通话时,我通过使用POST而不是GET来解决此问题。去搞清楚! –