我使用的服务是:调试语音识别
调用的接口是:https://openapi.baidu.com/oauth/2.0/token
参数设置情况:正常官方的三个参数
- grant_type:必须参数,固定为“client_credentials”;
- client_id:必须参数,应用的 API Key;
- client_secret:必须参数,应用的 Secret Key;
开发平台和机型:web浏览器查看
SDK版本号:无
代码或日志截图(上传截图能帮助您更快解决问题):
复现步骤、现象及其他描述:php curl post请求:接口返回结果是:SSL certificate problem: unable to get local issuer certificatebool(false)
收藏
点赞
0
个赞
请登录后评论
TOP
切换版块
您好, 是你本地的PHP环境设置问题, 谢谢
$arr['grant_type']='client_credentials';
$arr['client_id']='';
$arr['client_secret']='';
$auth_url = "https://openapi.baidu.com/oauth/2.0/token";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $auth_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $arr);
$response = curl_exec($ch);
if(curl_errno($ch))
{
print curl_error($ch);
}
curl_close($ch);
var_dump($response);
die();