I have a Facebook app that handles most interactions with Facebook on the client side, however, I need to eventually post to the user's wall while the user is offline. I am currently storing the user's id and access token but I'm lost on how to renew the access token.
I assume it would be just a question of calling a graph method passing my app is, secret and the user id to get a new access token since the user has previously given the app all the necessary permissions but I can't seem to find anything like this on the docs. Am I taking the correct approach here or is there something else I should do in order to post as the offline user?
Thank you