I'm trying to use the Facebook Javascript SDK to allow users of my website to invite their friends to the website/app. I have oAuth implemented so anyone clicking to invite their friends is already authenticated.
I have tried using the Multi Friend Selector and the manual Request To Recipients. The facebook dialog opens up, I select recipients, hit send, and everything looks like it worked. Using either method I get what looks like a valid response:
Object {request: "413561464164", to: Array[1]}
request: "413561464164"
to: Array[1]
0: "2457254725"
length: 1
The intended recipients never receive the request, though. I've tried with multiple recipients, multiple senders, multiple apps (one for localhost and dev server). This is what I'm trying to use:
<script src="https://connect.facebook.net/en_US/all.js"></script>
<a id="inviteFacebookFriends">Invite Facebook Friends</a>
FB.init({
appId: '123',
frictionlessRequests: true
});
@*function sendRequestToRecipients() {
var userIds = document.getElementsByName("userIds")[0].value;
FB.ui({
method: 'apprequests',
message: 'user123 has invited you to join app123',
to: userIds
}, requestCallback);
}*@
function sendRequestViaMultiFriendSelector() {
FB.ui({
title: 'Invite your friends to app123',
method: 'apprequests',
message: 'user123 has invited you to join app123',
}, facebookRequestCallback);
}
function facebookRequestCallback(response) {
console.log(response); // this is the response above
if (response != 'undefined') {
addAlert('success', 'Invites sent!', true);
}
}
$('#inviteFacebookFriends').click(function(event) {
event.preventDefault();
sendRequestViaMultiFriendSelector();
});