I have used the refresh token several times in just a short period for testing purposes, but I wonder that, do Google refresh token expire? Or I can call the same refresh token to get another access token again and again in a long period(A week or even months)?

link|improve this question

54% accept rate
are you using ruby, or do you have code sample for that? – Thufir Jan 24 at 11:55
feedback

1 Answer

up vote 4 down vote accepted

The Google Auth server issued Refresh tokens never expire that's the whole point of the refresh tokens.
The refresh token will expire or I should say become unauthorized when the user revokes access to your application.

Refer this doc it clearly stats the function of refresh tokens.

Instead of issuing a long lasting token (typically good for a year or unlimited lifetime),
the server can issues a short-lived access token and a long lived refresh token.

So in short you can use refresh tokens again and again untill the user who authorized the access revokes access to your application.

link|improve this answer
Thanks! Gotta see the doc. – Robin Carlo Catacutan Jan 21 at 15:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.