简体   繁体   English

在Kohana 3.2(PHP 5.3)中,对SetExpressCheckout的PayPal API请求失败

[英]PayPal API request for SetExpressCheckout failed in Kohana 3.2 (PHP 5.3)

we have used Kohana 3.2 (PHP 5.3). 我们已经使用Kohana 3.2(PHP 5.3)。 Paypal now not working we got below the error message. 贝宝现在无法正常工作,我们得到了以下错误消息。

PayPal API request for SetExpressCheckout failed: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure(35)

This is our curl setup 这是我们的卷曲设置

    curl_setopt_array($curl, array(
        CURLOPT_URL            => $this->api_url(),
        CURLOPT_POST           => TRUE,
        CURLOPT_POSTFIELDS     => http_build_query($post, NULL, '&'),
        CURLOPT_SSL_VERIFYPEER => FALSE,
        CURLOPT_SSL_VERIFYHOST => FALSE,
        CURLOPT_RETURNTRANSFER => TRUE,
        //CURLOPT_SSL_CIPHER_LIST => 'TLSv1',
    ));

The "handshake failure" is related to SSL certificates. “握手失败”与SSL证书有关。 Can be helpful to visit www.paypal.com/mts and then look for the document "2016 Merchant Security Roadmap Microsite" which will show all the latest information on this subject and what to do exactly. 可能有助于访问www.paypal.com/mts,然后查找文档“ 2016 Merchant Security Roadmap Microsite”,其中将显示有关此主题的所有最新信息以及确切的操作。 The microsite expalin very well all the necessary steps to perform. 微型站点很好地执行了所有必要步骤。 Andrea 安德里亚

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM