使用google analytics api刷新访问令牌

时间:2012-06-04 13:36:59

标签: php google-analytics

我尝试使用google analytics API(php)刷新访问令牌,但我总是 invalid_grant错误 ...这是我的流程:

1。我使用离线请求在我的数据库中保存了第一个访问令牌,响应是:

{"access_token":"ya29.AHES6ZSPMUyKfx06Bw89LnlfRa5mEmwdthyCUj6D7bRmDcQ","token_type":"Bearer","expires_in":3600,"refresh_token":"1\/1XLO8PLs2Pb0NPs-T-lt07jWW_STBWYG3IGRB08ZbkA","created":1338810086}

2。我检查了令牌信息,如果“expires_in”< 0我尝试刷新我的令牌:

if ($infoAt['expires_in'] <= 0) {
 $row = $database->loadObject("SELECT refresh from token WHERE id=1");
 $client->refreshToken($row['refresh']);
}

我发出了invalid_grant错误...

任何帮助? 非常感谢,对不起我的英语......

0 个答案:

没有答案