I am using oauth 2 to authenticate user on facebook. My application is loaded within canvas page and I am getting user access token from signed_request.
What is best practice for store and use user access token? I will want use user access token in flash facebook application in various api calls.
Should I store it to database? And after every user login to application replace user access token in database?(To prevent it from expiration)
Or whenever I will need access token should I ask facebook somehow to provide me with it?
Thank you very much for answers or links with usefull information. I would like to use it my bachelor thesis.