I'm using the new Google Identity Services to login a user to my web app, calling google.accounts.id.initialize().
I then send that id_token as credentials to the server on every request, which uses OAuth2Client.verifyIdToken() to verify the user's identity.
However, that id_token eventually expires and I'm not sure how to refresh the token on the client. Is that possible?