We have a website that uses Facebook to login. We have an invitation page that displays the friends of the facebook user and then invites them through facebook:
$('.invite_container a').live('click', function() { var link = $(this); FB.ui({method: 'apprequests', message: "Join me on Tailored", to: link.attr("user_id") }, function(data) { console.log(data); }); });
I get a response from Facebook that includes the request id and the invited user id. No one ever receives invitations, and when I check the request identifier in the FB column, I return "false".
Any ideas?
source share