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.

Making an api call requesting friends name, id and location,

FB.api('/me/friends', {fields: 'name,id,location'}, function(response) {
//...
});

returns two parameters for location (id and name). The "name" parameter specifies friends location but what is the significance of the "id" parameter?

If that parameter is pretty important, how can it be of use to facebook app developers?

I have been searching for an answer for this question for a quiet sometime.

Thanks in advance.

share|improve this question
1  
what is the significance of the "id" parameter are you kidding? If not, you gotta read the documentation first. – Shadowfax Jan 23 at 9:55
I tried looking, couldn't find a proper explanation. Providing a link would be of great help. Thanks – Sachin Jan 23 at 10:56

1 Answer

This it the object id in the open graph. You can query information about this location from the grah. For example this is my hometown: http://graph.facebook.com/106013482772674

Every object on the graph is represented by an id. Locations, being objects themselves have it as well.

share|improve this answer
Does this id vary depending upon location or user. i.e, if two of my friends are in the same location, will they have the same location id? – Sachin Jan 23 at 11:06
yes. it's the same as to ask me if you and your friend have a common friend if that is the same guy. – Alexander Nenkov Jan 23 at 11:13
Thanks, its pretty clear now, so does that mean facebook has a location id for each lat/lng or over a specific area of given radius? – Sachin Jan 23 at 11:20
Definitely not. I've never searched how locations are added to the graph but most points of interest are there. – Alexander Nenkov Jan 23 at 11:26
I tried searching for that, did not come across anything that could help. Anyways, I get a location id for each and every friend who has specified a location in facebook, is there any way that id could help filter friends near you or based on a specific location? – Sachin Jan 23 at 11:37
show 3 more comments

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.