フィード ダイアログを使用して Facebook の友達のウォールに投稿しようとしました。複数の友達セレクターでフィード ダイアログを使用するにはどうすればよいですか? または、フィード ダイアログのパラメータ 'to' に user_ids (友人の ID) の配列を含めることはできますか? 以下のコードでは、「ids」は user_ids(friends 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);