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.

there's only thing that server have to do; just check any access token's validity.

clients send to the server user id and access token obtained by FB.getLoginStatus.

As I expected, there would be any url that checks access token's validity, like

http://xxx.facebook.com/access_token?=xxxxxxxxxxxxxxxxxxxxxxxxxxxx

that returns whether it's available one or not.

or is there any API(server side) for that?

share|improve this question
1  
Why not just call graph.facebook.com/me/permissions ? – Igy Dec 22 '11 at 15:59

1 Answer

You can simply request https://graph.facebook.com/me?access_token=xxxxxxxxxxxxxxxxx if you get an error, the token is invalid. If you get a JSON object with an id property then it is valid.

share|improve this answer
4  
Sorry, my question wasn't clear. The problem is how to verify user only with uid and accessToken. graph.facebook.com/100000726976284?access_token=xxxxxx For example, is there any simple way to check if user 100000726976284's access token is xxxxxx. I guess the 'verified' filed is the key. Only when I put correct xxxxxx, I could see verified=true in the response. – So Jae Kyung Dec 22 '11 at 19:16
4  
Request graph.facebook.com/me?access_token=xxxxxxxxxxxxxxxxx as mentioned above, and then check that the uid you have matches the id passed back from the request. – AlexQueue Oct 5 '12 at 18:23

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.