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.

I need to get my UID using a simple FQL query, for some reason it returns an empty page. This is my query:

https://api.facebook.com/method/fql.query?query=SELECT uid FROM user WHERE uid=me()

Thanks

share|improve this question

1 Answer

me() returns the current connected user. So you need to append an access_token:

https://api.facebook.com/method/fql.query?query=SELECT uid FROM user WHERE uid=me()&access_token=XXXXXX

P.S.: Facebook has just released a Graph API endpoint to query FQL fql, so you should be able to do something like:

https://graph.facebook.com/fql?q=SELECT uid FROM user WHERE uid=me()&access_token=XXXXXX

(unfortunately, for some reason it's not working on the Facebook Graph Explorer)

share|improve this answer
Thank you. But, from what I've read, I don't need an access token for getting info from the "user" table, unless it is some more complex data (like friends users). Also, the reason that I am trying to get the current user's uid is for generating access token. – Hilel Spivakov Oct 15 '11 at 15:18
Using me() means you have a connected user, so you need an access_token to prove that! – ifaour Oct 16 '11 at 10:45
Ok, then how can I get my UID without access token, even if I don't use FQL? – Hilel Spivakov Oct 21 '11 at 9:23
programatically, if you don't authorize your app then you can't! you can manually visit the explorer and get your uid. – ifaour Oct 22 '11 at 10:13

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.