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