I have an application using the Graph API. I have it creating events for the user, but would like to let the user invite their friends from our site instead of having to go
you can also use javascript sdk:
var inviteCallback = function(result) {
console.log(result);
};
var event_intives = {
method: 'events.invite',
eid: event_id,
uids: friends_list_array,
personal_message: 'custom request message'
};
FB.api(event_intives, inviteCallback);
if all ok, it should log 'true'