Question

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

Was it helpful?

Solution

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.

OTHER TIPS

Facebook doesn't allow you that without permission!

https://graph.facebook.com/me

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top