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?