We are planning to implement OAuth2 spec and are reviewing the "access token" implementation. Looks like the specification gives a lot of freedom to implementors and we are looking for some best practices:
- What to put in the access token? We want to strike the good balance between size and usefulness. I realize this is very application specific but perhaps there are some things that are really worth having.
So far we identified the following fields:
- User Identifier
- Expiration date
- Version (so that we can change the format in future)
- Client Identifier (i.e. app who requested the token)
Some additional attributes (e.g. password hash) would be stored in the database and looked-up during authentication (using the fields in the token as a 'key').
- How to secure it?
We are leaning towards securely signing the access token (HMAC) so that we know if it was tampered with. The fields in the token would be then readable by everyone.
The alternative is to encrypt (AES) the whole thing and make it completely opaque to the user. This makes it much bigger (in terms of bytes). It looks like FB is now using encrypted tokens (http://developers.facebook.com/blog/post/572/)
Any suggestions as to industry best practices?
Thanks, Piotr