我尝试使用提要对话框在 facebook 朋友的墙上发帖。如何将提要对话框与多个朋友选择器一起使用?或者我可以在 Feed 对话框的参数“to”中包含 user_ids(朋友的 ids)数组吗?下面给出的代码,其中 'ids' 是 user_ids(朋友 ids)的数组。这对我不起作用。
var obj = {
method: 'feed',
to: ids,
link: 'http://www.xxxxxxx.com/xxxxxx',
picture: 'http://xxx.com/xx.jpg',
name: 'Feed Dialog',
caption: 'Friends',
description: 'Feed dialog to post on friends wall.'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);