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.

My question is very simple

On this page: http://www.facebook.com/axefan?sk=app_116526158422952

How did they do to show the names of the connected user, without asking permission? I thought it was not possible to have UID of a member without going through auth?

share|improve this question

1 Answer

You don't need an access token to get the name of something in Facebook. You just need the id of whatever it is you are checking (Person, page, event, etc).

For example, you can check these without appending any access token to the URL:

http://graph.facebook.com/595869823?fields=id,name

http://graph.facebook.com/292378408255?fields=id,name

share|improve this answer

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.