I am just getting started working with googles API and Oauth2. When the client authorizes my app I am given a "refresh token" and a short lived "access token". Now every time the access token expires, I can POST my refresh token to google and they will give me a new access token.

My question is what is the purpose of the access token expiring? Why cant there just be a long lasting access token instead of the refresh token?

Also, does the refresh token expire?

For more info on Google Oauth2 workflow - http://code.google.com/apis/accounts/docs/OAuth2.html

I appreciate any thoughts on this.

Thanks

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

This is very much implementation specific, but the general idea is to allow providers to issue short term access tokens with long term refresh tokens. Why?

  • Many providers support bearer tokens which are very weak security-wise. By making them short-lived and requiring refresh, they limit the time an attacker can abuse a stolen token.
  • Large scale deployment don't want to perform a database lookup every API call, so instead they issue self-encoded access token which can be verified by decryption. However, this also means there is no way to revoke these tokens so they are issued for a short time and must be refreshed.
  • The refresh token requires client authentication which makes it stronger. Unlike the above access tokens, it is usually implemented with a database lookup.
link|improve this answer
feedback

It is essentially a security measure. If your app is compromised, the attacker will only have access to the short-lived access token and no way to generate a new one.

Refresh tokens also expire but they are supposed to live much longer than the access token.

link|improve this answer
But wouldn't the attacker also have access to the refresh token? and can than use that to create a new access token? – levi Aug 11 '11 at 21:27
You only send the access token with your requests, so an attacker will only be able to capture that. If they get your refresh token, you can still revoke it. – Claudio Cherubino Aug 12 '11 at 17:51
@levi, the hacker cannot use the refresh token to create a new access token because the client ID and client secret are needed along with the refresh token in order to generate the new access token. – Spike Feb 8 at 20:43
feedback

Your Answer

 
or
required, but never shown

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