dongren7374 2014-04-08 22:21
浏览 42
已采纳

使用PHP客户端库持久登录Google OAuth2

I've been using the PHP client library for Google OAuth2. I have everything working perfectly, however, when the token expires around 3600 seconds (60 min.), I get an error.

I had it set to when the access token expires, it redirects to the home page; like so:

     if($client->isAccessTokenExpired()) {
       session_destroy();
       header('Location: index.php');
     }

Works fine, although rather annoying to a user who is logged on and gets logged out 60 min in, trying to use the app.

How can I make the session longer?

  • 写回答

1条回答 默认 最新

  • dpnvrt3119 2014-04-09 02:12
    关注

    From the docs:

    Access tokens have limited lifetimes. If your application needs access to a Google API beyond the lifetime of a single access token, it can obtain a refresh token. A refresh token allows your application to obtain new access tokens.

    Example:

    if ($client->isAccessTokenExpired()) {
        $client->refreshToken($token->refresh_token);
        $token = $client->getAccessToken();
        // save the new token
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化