First I will say that I'm working fully client side, no server side whatsoever.
I managed to retrieve an access token for 60 days and I posted to my wall, so far so good. Now I wanted to see what happens if I change my password and handle this kind of access token expiration. I changed my password and got the oAuthException as expected but at this point I got lost. I read as much as I could found about this issue and found a lot of complaints about this. I will try to conclude my findings:
On one page I read that I will need to send my app_secret to get a new access token but it came with a warning not to do so on the client side, what if I only have client side?
On a second page I read that I should call a certain URL to retrieve a new access token but that doesn't work, I get either nothing or a code that I don't know what to do with it. Remember I'm a client side and this method seem to be related to a web application.
On a third page I read that I can renew an access token only if it's still valid, but I don't have control on when the user decides to change his password.
The only solution for me now is to force the user to re-authenticate himself and retrieve a new access token every 60 days, it might not sound much but it's disturbing.
What am I missing? How can I renew/extend my access token when receiving an oAuthException error while doing so on the client side? Thanks!