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 am using Facebook API how i can get userid in facebook from its mail ?

I am using Facebook.dll

share|improve this question

3 Answers

up vote 1 down vote accepted

Using a Search API, you can query all publicly available information. That means, you can get user ID if the user allowed his e-mail address to be public.
You would issue a query something like:

 https://graph.facebook.com/search?q=user@example.com&type=user&access_token=... 

The JSON response would be:

{
      "data": [
        {
         "name": "Firstname Lastname"
         "id": "123456799"
        }
   ]
} 

If the user's address is not public, you will get an empty data.

I'm not aware if there is an implementation for this in C#, but you can easily make one.

share|improve this answer
I am using desktop application how can I do this on it ? – kartal Jul 14 '11 at 17:34
and where I can found search api can you please put a post url to it and how to use it ? – kartal Jul 14 '11 at 17:38
http://developers.facebook.com/docs/reference/api/ under Searching section – Maggie Jul 14 '11 at 18:48
dynamic result = fb.Get("/search", parameters);

should be changed into something like:

dynamic result = fb.Get("/me", parameters);
share|improve this answer

Here is how you would do it using Facebook C# SDK.

var fb = new FacebookClient("access_token");
dynamic parameters = new ExpandoObject();
parameters.q = "user@example.com";
parameters.type = "user";
dynamic result = fb.Get("/search", parameters);

If user is found you will get exactly one result.

if(result.data.Count == 1){
    var uid = result.data[0].id;
}
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.