PayPalAPI EndPoint

时间:2012-10-24 08:00:43

标签: asp.net paypal

我正在使用PayPal Express Checkout。添加SandBox服务参考

(https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl)

我得到了以下端点地址:

https://api.sandbox.paypal.com/2.0/

但是,此链接未运行并出现以下错误:

An error occurred during a connection to api.sandbox.paypal.com.

SSL peer was unable to negotiate an acceptable set of security parameters.

(Error code: ssl_error_handshake_failure_alert) 

1 个答案:

答案 0 :(得分:0)

您使用的是错误的端点。对于SOAP,您将使用以下内容...

带有签名的Live Server:https://api-3t.paypal.com/2.0/

带有证书的Live Server:https://api.paypal.com/2.0/

沙盒服务器w /签名:https://api-3t.sandbox.paypal.com/2.0/

沙盒服务器带证书:https://api.sandbox.com/2.0/

有关详情,请参阅PayPal SOAP documentation的第18页。