My site utilizes lifetime access tokens (offline_access). However, if the user changes his/her password, the access token gets reset. Is there a method to check if the current access token is valid before making calls to the Graph API? Thanks for your time.
|
|
|||
|
|
|
Basically, FB wants you to poll for it, or to detect the case and redirect the user to get a reauth to occur. Annoying, but official: |
|||
|
|
|
Offline, without sending anything to facebook - I don't think so. The easiest way is probably to send a request to:
Facebook also supports subscriptions for real-time updates, but I am not sure how to apply them to this situation. |
|||
|
|
|
If you want to know the token expiry time you can pass a open graph url using appid and token as below it will work .
|
|||
|
|
|
The real time updates would allow you to solve this problem, but it would be pretty complicated. Basically, you can subscribe to updates that will tell you 1) if the user removed the app or 2) if the user removed permissions. You could use this to store the current permissions of the faceboook user. This way, if the user removed your app you would know that the access token is expired. Real time updates is actually facebooks recommended way of handling permissions. Many apps make api calls every time a page is loaded to check for permissions. This tends to be slow and unreliable. |
|||||
|
|
You can check the token using the token debug service , take a look here https://graph.facebook.com/debug_token?input_token=INPUT_TOKEN&access_token=ACCESS_TOKEN https://developers.facebook.com/docs/howtos/login/debugging-access-tokens/ |
|||
|
|
|
Otto's answer of the facebook post seems to be the official response on this question, however it uses straight PHP instead of the SDK and also uses JS to resolve the issue instead of PHP. If you are using PHP to check for a valid session you often need a PHP method of ensuring a valid session in order to continue. The following code checks for the me object with the graph API. If an exception is thrown it destroys* the current Facebook session.
This forces later graph calls to instantiate a new Facebook session. This at least gives you access to public data so that you can render pages do not require FB user permissions:
To reobtain user permission access the user will need to login to your app (this is distinct from being logged into Facebook itself). You can do this with JS or with PHP:
*Note the destroySession() call is not in a tagged release of the PHP SDK yet. Use the master branch or patch it in. |
|||
|
|
