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 there ant way to get Facebook user Id by passing the email and password of the user through a graph API....what i want to do is,i want to get the profile details of a particular user..if we know the user id then the details of the particular user can be obtained by the GRAPH API.. https://graph.facebook.com/ID

but i don't know how to get the Facebook user id.....please help me out.... I'm using JavaScript and html5 for mobile applications..both android and ios..and the IDE's are APPMOBI and PHONEGAP

share|improve this question
i would like to know if we can get the user id of a particular user by passing their username and password in the graph api... – vishnu agikumar Jul 24 '12 at 4:55

1 Answer

up vote 1 down vote accepted

You can try getting an access token by logging in using the username and password, then calling https://graph.facebook.com/me and getting the id field. I don't think there's a direct way of getting an id through the API just using the username and password without getting an access token for that user, which would require that the user accept your appId.

share|improve this answer
can u help me out to get the access token...... – vishnu agikumar Jul 24 '12 at 5:16
@vishnuagikumar It's more complicated than being able to explain in comments, but you can start here: developers.facebook.com/docs/reference/javascript Using the javascript API, init, login, then call /me. You'll have to already have an AppID from facebook registered using your domain. If you're not using javascript there's also a PHP, Android and iOS API. – Jon Lin Jul 24 '12 at 5:22
...thanks a lot for helping me out.... – vishnu agikumar Jul 24 '12 at 5:25

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.