I'm working on application and I want to connect it to facebook. The user should type his (name/username) in a textbox and automatically my app should find his account of facebook. In order to search for users I need user access token. How can I get a user access token before my user enter his username and password? I'm using Javascript SDK.
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 think what you want is possible with server side authentication (OAuth). Once logged in via OAuth, you have an access token (not from the user, but from your own account or the account of your page). With that access token, you're able to search for the person's name, e.g. https://graph.facebook.com/search?q=mark&20zuckerberg&type=user. However, you can't be sure which account is from the user if there are multiple query results. |
|||
|
|
Simple answer: You can’t. Why do you want the user to search for his own account anyways? Just have him log in, and you know immediately who he is (and so does he, most likely even before logging in). |
|||||||||||||
|