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..