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 have a Facebook desktop application and am using the Graph API. I am able to get the access token, but after that is done - I don't know how to get the user's ID.

My flow is like this:

  1. I send the user to https://graph.facebook.com/oauth/authorize with all required extended permissions.

  2. In my redirect page I get the code from Facebook.

  3. Then I perform a HTTP request to *graph.facebook.com/oauth/access_token* with my API key and I get the access token in the response.

From that point on I can't get the user ID.

How can this problem be solved?

share|improve this question

3 Answers

up vote 32 down vote accepted

If you want to use Graph API to get current user ID then just send a request to:

https://graph.facebook.com/me?access_token=...
share|improve this answer
Thanks. missed that. – Mohoch Aug 25 '10 at 10:22

The facebook acess token looks similar too "1249203702|2.h1MTNeLqcLqw__.86400.129394400-605430316|-WE1iH_CV-afTgyhDPc"

if you extract the middle part by using | to split you get

2.h1MTNeLqcLqw__.86400.129394400-605430316

then split again by -

the last part 605430316 is the user id.

Here is the C# code to extract the user id from the access token:

   public long ParseUserIdFromAccessToken(string accessToken)
   {
        Contract.Requires(!string.isNullOrEmpty(accessToken);

        /*
         * access_token:
         *   1249203702|2.h1MTNeLqcLqw__.86400.129394400-605430316|-WE1iH_CV-afTgyhDPc
         *                                               |_______|
         *                                                   |
         *                                                user id
         */

        long userId = 0;

        var accessTokenParts = accessToken.Split('|');

        if (accessTokenParts.Length == 3)
        {
            var idPart = accessTokenParts[1];
            if (!string.IsNullOrEmpty(idPart))
            {
                var index = idPart.LastIndexOf('-');
                if (index >= 0)
                {
                    string id = idPart.Substring(index + 1);
                    if (!string.IsNullOrEmpty(id))
                    {
                        return id;
                    }
                }
            }
        }

        return null;
    }

WARNING: The structure of the access token is undocumented and may not always fit the pattern above. Use it at your own risk.

Update Due to changes in Facebook. the preferred method to get userid from the encrypted access token is as follows:

try
{
    var fb = new FacebookClient(accessToken);
    var result = (IDictionary<string, object>)fb.Get("/me?fields=id");
    return (string)result["id"];
}
catch (FacebookOAuthException)
{
    return null;
}
share|improve this answer
3  
It works perfectly before, but after Facebook update to the OAuth2.0. This method cannot work anymore. – lucemia Sep 28 '11 at 9:54
7  
I wish I had heeded the warning about this approach. We got caught with our pants down today as out of the blue the format of the access tokens seems to have changed. I highly recommend avoiding this approach and going with the accepted answer. – Todd Menier Oct 11 '11 at 20:33

The easiest way is

https://graph.facebook.com/me?fields=id&access_token="xxxxx"

then you will get json response which contains only userid.

share|improve this answer
{ "error": { "message": "(#100) Unknown fields: userid.", "type": "OAuthException", "code": 100 } } – Nikolay Kuznetsov Oct 24 '12 at 5:30
it should be id, not userid – Nikolay Kuznetsov Oct 24 '12 at 5:47
@NikolayKuznetsov: sorry man,in overlook instead of id i wrote userid, i edited now,please try again – pashaplus Oct 24 '12 at 9:02
No problem, I have already tried it, so I post my previous comment. – Nikolay Kuznetsov Oct 24 '12 at 14:15

protected by Will Dec 31 '10 at 19:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.