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?