I'm currently working on a PhoneGap app that requires Facebook authentication.
I'm wondering what is the best way to store the Facebook access token that is returned after the user logs in. Should it be stored locally (e.g. through LocalStorage)? Are there any security risks if I do it this way? I'm only storing the access token and the expiry time of that token.
The alternative is to store this access token in server-side. Is this a better way?