我正在尝试使用facebook'javascript sdk向选定的Facebook好友发送消息。我使用下面的方法,但它只获得数组的最后一个id。我应该如何传递允许发送多个朋友的参数。我想向数组中所有朋友的ID发送消息。
//id of selected friends
var myFriends=["5029034**","5992788**"];
FB.ui({
method: 'send',
to: myFriends,
name: 'Bind vs Live vs Delegate in Jquery ',
link: 'http://example.com/2011/05/25/jqueryde-bind-vs-live-vs-delagate/',
});
提前致谢,