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.
what is the significance of the "id" parameterare you kidding? If not, you gotta read the documentation first. – Shadowfax Jan 23 at 9:55