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.

How to send 'feed' using feed dialog to multiple users?

here is my code:

function doShare(friend_id){
FB.init({appId: app_id, status: true, cookie: true});
    //alert(image_url);
    // calling the API ...
    var obj = {
      to: friend_id,
      method: 'send',
      link: 'https://developers.facebook.com/docs/reference/dialogs/',
      picture: "http://www.emoticon.biz/upload/emoticon/50ecfb8a648499.54479910.png",
      name: 'Emo',
      caption: 'Send Emoticon to Friends!',
      description: "Sad",
      redirect_uri: "http://google.com"
    };

    function callback(response) {
      document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
    }

    FB.ui(obj, callback);
}

my question is : how to send to 2 users from this code? i have used "to: [friend_id1,friend_id2]" as i read from another article, but the output still displayed error..

This is from http://developers.facebook.com/docs/reference/dialogs/feed/

Thanks in advanced..

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.