Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

One use case is the following.

I ask for a Facebook access token to new users with the offline_access permission and I store it for later use. If the user remove in his settings the offline_access permission the token becomes invalid.

I would like to be able to test (maybe using the graph API) if the token I have still have the permissions I asked for, without waiting the user to log out to try to make an API call.

share|improve this question

1 Answer

up vote 16 down vote accepted

Just call the Permissions graph api method. You could parse the json response and look to see if "offline_access" exists or not. The url format is: https://graph.facebook.com/me/permissions?access_token=... You can access an example of it by going here and clicking the permissions link there. The

share|improve this answer
This is correct, however, be aware that as of 5/11 there is a bug preventing this from working: developers.facebook.com/bugs/277040382385812 – ozmo Jun 20 '12 at 21:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.