我怎么知道我的访问令牌是否已过期。
我正在尝试抓住
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中获取错误,然后显示“获取新令牌”
如果我想用卷发
$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";
}
最佳答案
探索这个网址:
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"}
关于php - 如何知道访问 token 是否在Google Api PHP中过期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8953195/