Screenleap 在 php 中返回 NULL



我已经在screenleap中创建了开发人员帐户,并尝试将screenleap API集成到我的应用程序中,但是当我尝试由screenleap生成的示例请求代码时,它给了我NULL。

如何在 php 中测试示例请求?

    $url = 'https://api.screenleap.com/v2/screen-shares';
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('authtoken:my_authtoken'));
    curl_setopt($ch, CURLOPT_POSTFIELDS, 'accountid=my_accountid');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $data = curl_exec($ch);
    curl_close($ch);
    $json = json_decode($data,true);
    var_dump($json);

您的系统默认值可能不适用于 SSL 证书验证。

您可以尝试通过以下方式关闭验证:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

如果可行,请参阅 http://php.net/manual/en/function.curl-setopt.php 和 http://curl.haxx.se/docs/sslcerts.html 了解更多信息。

相关内容

  • 没有找到相关文章

最新更新