OpenSSL SSL_connect:与api.amazonalexa.com相关的SSL_ERROR_SYSCALL:443

时间:2017-09-25 10:40:15

标签: php curl alexa

我一直在努力让技能管理API工作,今天早上我遇到了一个新的障碍,没有任何改变。我得到了一个"用户昨晚没有同意这个操作错误"今天早上没有改变什么,这是我得到的卷曲日志:

尝试使用与昨​​晚相同的代码点击API,现在我得到了:

string(513) "
* Hostname api.amazonalexa.com was found in DNS cache
* Trying 54.239.28.187...
* TCP_NODELAY set
* Connected to api.amazonalexa.com (54.239.28.187) port 443 (#0)
* ALPN, offering http/1.1
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
* CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none
* OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to api.amazonalexa.com:443
* stopped the pause stream! * Closing connection 0 "

以下是我使用的代码:

ob_start();  
$out = fopen('php://output', 'w');

// exchange the access token for list of skills
$c = curl_init('https://api.amazonalexa.com/v0/skills/');
curl_setopt($c, CURLOPT_HTTPHEADER, array(
  'Authorization: ' . $access_token,
  'Accept: application/json',
  'Content-Type: application/x-www-form-urlencoded;charset=UTF-8'
));
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($c, CURLOPT_VERBOSE, true);
curl_setopt($c, CURLOPT_STDERR, $out);
curl_setopt($c, CURLOPT_POST, 1);

$r = curl_exec($c);
curl_close($c);
fclose($out);
$debug = ob_get_clean();
var_dump($r);
echo "<BR><BR>";
var_dump($debug);
$d = json_decode($r);

$ r在这种情况下产生bool(false)和$ d输出NULL。如果有所作为,我会将我的服务器托管在Godaddy上。我仍然可以访问使用Amazon登录并检索访问令牌。所以,它看起来不像托管问题。

1 个答案:

答案 0 :(得分:1)

根据错误跟踪,您的连接存在SSL错误。最明显的原因是您的托管端点没有有效的HTTPS认证或您的HTTPS配置不正确。如果您通过浏览器或通过卷曲请求以某种方式访问​​您的终端,则可以轻松测试这一点。