我使用Google日历API构建了一个原型日历同步系统,除了刷新访问令牌外,它运行良好。这些是我经历的步骤:
1)授权我的API并收到授权码。
2)交换了Access Token和RefreshToken的授权码。
3)使用Calendar API,直到访问令牌过期。
此时我尝试使用刷新令牌获取另一个访问令牌,因此我的用户不必继续授予访问权限,因为日记同步在离线时发生。
这是PHP代码,我在整个系统中使用curl请求。
$requestURL = "https://accounts.google.com/o/oauth2/token";
$postData = array("grant_type" => "refresh_token",
"client_id" => $clientID,
"client_secret" => $clientSecret,
"refresh_token" => $refreshToken);
$headers[0] = 'Content-Type: application/json';
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_URL, $requestURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($postData));
$response = curl_exec($ch);
$responseArray = json_decode($response, TRUE);
我得到的回应是:
[error] => invalid_request
[error_description] => Required parameter is missing: grant_type
没有报告卷曲错误。
我已尝试过标题内容类型:application / x-www-form-urlencoded以及许多其他内容,结果相同。
我怀疑在我的curl设置或标题中显而易见,因为此请求的Google文档中提到的每个参数都已设置。但是,我会绕圈子去,所以会感谢任何帮助,包括指出我忽略的任何明显错误。
答案 0 :(得分:5)
您的请求不应发布JSON数据,而应查询表单编码数据,如:
$requestURL = "https://accounts.google.com/o/oauth2/token";
$postData = "grant_type=refresh_token&client_id=$clientID&client_secret=$clientSecret&refresh_token=$refreshToken";
$headers[0] = 'Content-Type: application/x-www-form-urlencoded';
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_URL, $requestURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
$response = curl_exec($ch);
$responseArray = json_decode($response, TRUE);