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 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog