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.

If you visit https://developers.facebook.com/docs/reference/api/ and scroll down to the "Selection" section, you will see a link that says: "For example, the URL https://graph.facebook.com?ids=arjun,vernal returns both profiles in the same response.". Clicking on the link (which has an access token, hence why I can't link to it) reveals something similar to:

{
    -arjun: {
        id: "7901103",
        name: "Arjun Banker",
        first_name: "Arjun",
        last_name: "Banker",
        link: https://www.facebook.com/Arjun,
        username: "Arjun",
        -hometown: {
            id: "109533479072558",
            name: "Minnetonka, Minnesota"
        },
        -location: {
            id: "114952118516947",
            name: "San Francisco, California"
        },
        bio: "tippity top",
    ....
    ....
    ....
    }
}

When I try to retrieve the same profile details using my own app, all I can get is:

{
    -arjun: {
        id: "7901103",
        name: "Arjun Banker",
        first_name: "Arjun",
        last_name: "Banker",
        link: https://www.facebook.com/Arjun,
        username: "Arjun",
        gender: "male",
        locale: "en_US"
    }
}

There's A LOT of information that I'm unable to retrieve, even though I've authenticated using OAuth and have a valid access token. I assume I'm missing the rest of the information because I'm not a friend of Arjun's.

Is it possible to retrieve more information about a user or page without being friends, liking or subscribing to them?

share|improve this question
Have you tried requesting extended profile permissions when authenticating? "Sensitive" information like that requires the user grant permissions to your app when authorizing. See developers.facebook.com/docs/reference/login/… – mjk Dec 31 '12 at 14:23
Unfortunately that doesn't do anything. For example, if I try to add the permissions "user_hometown, friends_hometown" and try the FQL "SELECT hometown_location from user where username='arjun'", I always get null, presumably because Arjun is not my friend. – Dan Dec 31 '12 at 14:42
Actually, ignore my previous comment. It seems it was a permissions issue. My access token was only using 'user_hometown'. I cleared the token and ensured the latest included 'friends_hometown' and it seems to work now. Thanks for the assist! :) – Dan Dec 31 '12 at 15:06
You're welcome! When there's a difference between what two apps get from a query, it's almost always a permissions problem. – mjk Dec 31 '12 at 15:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.