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.

Is it possible to get the user id if the user isn't connected to your app?

share|improve this question

2 Answers

up vote 2 down vote accepted

If you have the users login name (i.e. email) you can do a query like this:

https://graph.facebook.com/search?q=USER_LOGIN&type=user&access_token=ANY_ACCESS_TOKEN

You can use any valid access token to run this request.

The resulting Data object contains user name and user id.

share|improve this answer

Facebook doesn't allow you that without permission!

https://graph.facebook.com/me

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.