4
我使用的JavaScript SDK才能發佈內容到用戶的朋友牆:Facebook的 - 發佈多個朋友牆壁
var publish =
{
method: 'stream.publish',
message: 'Some kind of test',
uid: uid,
target_id: friendID,
attachment: {
name: 'Test',
caption: 'Facebook API Test',
description: ('Sure hope it worked!'),
href: 'http://www.test.com/',
media: [
{
type: 'image',
href: 'http://test.com/',
src: 'http://test.com/image.jpg'
}
]
},
action_links: [
{ text: 'Enigma Marketing', href: 'http://www.test.com/' }
],
user_prompt_message: 'Share your thoughts about test'
};
FB.ui(publish);
return false;
這是工作不錯,但我不知道是否有辦法,我可以張貼到多朋友的牆壁?我注意到流行音樂在列表中顯示了一個目標朋友,所以看起來可以將該帖子發佈到多個用戶。我找不到任何文件,任何幫助將不勝感激。