PHP Curl发送错误的内容
我正尝试使用oauth2 auth方法向PostHQ Api发送Post请求。 我有正确的代码,client_id,client_secret等,因为它在Postman中工作正常,但是当我尝试使用PHP curl发送相同的数据时,出现错误:
错误
'error' => string 'invalid_request' (length=15)
'error_description' => string 'The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed. Check the "grant_type" parameter.' (length=179)
这是请求访问令牌的文档,这是我试图获取访问令牌的代码。
PHP代码:
$prefix = $vend[0]['domain_prefix'];
$request_url = 'https://'.$prefix.'.vendhq.com/api/1.0/token';
$body['code'] = $vend[0]['code'];;
$body['client_id'] = $vend[0]['app_id'];;
$body['client_secret'] = $vend[0]['app_secret'];;
$body['grant_type'] = 'authorization_code';
$body['redirect_uri'] = $vend[0]['redirect_uri'];;
$response = $this->invoke($request_url, 'POST', $body);
调用功能
private function invoke($url, $method, $data = null)
{
$ch = curl_init($url);
if($method=='POST'){
if(isset($data)){
$data_string = json_encode($data);
}
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
$headers = array();
$headers[] = "Content-Type: application/x-www-form-urlencoded;charset=UTF-8";
$headers[] = 'Content-Length: '.strlen($data_string);
echo '<br>Curl Headers';
var_dump($headers);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
}//END POST
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$json = curl_exec($ch);
$info = curl_getinfo($ch);
echo '<pre>Curl Info<br>';
var_dump($info);
echo '</pre>';
curl_close($ch);
$json_output = json_decode($json, true);
return $json_output;
}//end function
我相信我发送一切正常,但卷曲发送,但从卷曲信息我得到这个
'content_type' => string 'application/json; charset=UTF-8' (length=31)
但是,VendAPI文档表示将发布数据发送为“application / x-www-form-urlencoded” 。
注意这些参数应该作为POST请求的“application / x-www-form-urlencoded”编码体发送
我做错了什么?
在发布问题后解决了问题。
问题是,我试图用application/x-www-form-urlencode
内容类型发布数据,但我以json格式发送数据。 我从invoke函数中删除了这些行
if(isset($data)){
$data_string = json_encode($data);
}
并设置curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
除了创建一个$body
数组之外,我创建了一个字符串:
$body = 'code='.$vend[0]['code'];
$body .= '&client_id='.$vend[0]['app_id'];
$body .= '&client_secret='.$vend[0]['app_secret'];
$body .= '&grant_type=authorization_code';
$body .= '&redirect_uri='.$vend[0]['redirect_uri'];
一切工作正常:)
链接地址: http://www.djcxy.com/p/48873.html