如何知道访问令牌是否在Google Api PHP中过期

时间:2012-01-21 13:08:57

标签: php curl google-api access-token

我如何知道我的访问令牌是否已过期。

我正在使用try和catch

try {
$result = file_get_contents('https://www.googleapis.com/calendar/v3/calendars/primary/events?access_token='.$accesstoken);
print_r($result);
}
catch(Exception $e){
echo "Get new token";
}

但仍然会从file_get_contents中获取错误,然后打印“获取新标记”

如果我想使用curl

$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,'https://www.googleapis.com/calendar/v3/calendars/primary/events?access_token='.$accesstoken);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);

然后我该怎么做才能在这里发现错误?

//if error because access token is invalid,
  do here

// my fixed solution

 $response= json_decode($result);
 if($response->error){ // if result has errors
   echo "Get new token";
 }

2 个答案:

答案 0 :(得分:12)

探究这个网址:

https://www.googleapis.com/oauth2/v1/tokeninfo?access_token={accessToken}

会给你:

{
  "audience":<your_client_id>,
  "user_id":<user_id_if_userinfo.profile_was_authorized>,
  "scope":"<authorized_scope_1> <authorized_scope_1>",
  "expires_in":<time_to_live>
}

或错误:

{"error":"invalid_token"}

答案 1 :(得分:0)

抓住例外情况。检查HTTP错误代码是否为401(未经授权)。这意味着您的访问令牌已过期,并且您需要刷新访问令牌。