Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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();
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.