Facebook Graph API – Get friends attending an event? – Facebook api
I'm able to get a list of all attendees using the Facebook SDK, FB.api("/{event-id}/attending", function (response) { if (response && !response.error) { /* handle the result */ } } ); I need to retrieve my friends who are attending an…