我正在使用PayPal快速结帐。添加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) 发布于 2012-11-13 09:27:19
您使用了错误的终结点。对于SOAP,您将使用以下代码...
带签名的实时服务器:https://api-3t.paypal.com/2.0/
带证书的实时服务器:https://api.paypal.com/2.0/
带签名的沙盒服务器:https://api-3t.sandbox.paypal.com/2.0/
带有证书的沙盒服务器:https://api.sandbox.com/2.0/
有关更多详细信息,请参阅PayPal SOAP documentation的第18页。
https://stackoverflow.com/questions/13045038
复制相似问题