My code looks something like this...
FB.api('/'+eventId+'/invited?users='+selectedFriends.join(','), 'post', { message: body }, function(response) {
if (!response || response.error) {
alert('Error occured, please try again. ('+JSON.stringify(response.error)+')');
} else {
alert('Invites Sent! ' + response.id);
}
});
It sends invites, however the users don't receive a notification. The only way the user knows that she was invited to the event is to check her Event list. I want to notify the user somehow -- an email, wall post, or app request comes to minds -- but I don't want to spam my users. How would you suggest dealing with this situation?