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 have the following Facebook Graph API call:

    FB.ui({
        method: "send",
        to: '123123,456456',
        name: 'People Argue Just to Win',
        link: 'http://www.nytimes.com/2011/06/15/arts/people-argue-just-to-win-scholars-assert.html'
    }, function(response) {
        // some stuff
    });

Whenever it's invoked, my message's only recipient is the user with id 123123. If I switch the two numbers, the 456456 is the sole recipient.

As far as I can tell, I'm using the API exactly like I'm supposed to, so what could I be doing wrong?

share|improve this question

1 Answer

up vote 0 down vote accepted

It looks like it's not possible with the send method to specify multiple recipients: http://bugs.developers.facebook.net/show_bug.cgi?id=18806

It does look like it can be done with the apprequests method, though:

    FB.ui({
        method: 'apprequests',
        message: 'My message',
        data: {},
        title: "My Title",
        to: [123123, 456456]
    });

For my purposes, that's close enough.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.