I am using the Javascript SDK to post something onto a users friends wall:
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;
It is working ok, but I was wondering if there was a way I could post to MULTIPLE friends walls? I noticed that the pop shows a target friend in a list few, so it seems it may be possible to publish the post to more than one user. I can't find anything in the documentation, any help would be greatly appreciated.