Ваш пользователь вошел в Facebook через javascript facebook sdk.
далее, опубликовать в своем профиле:
function publish_it()
{
var publish = {
method: 'stream.publish',
message: 'your message',
attachment: {
name: 'invitation',
description: 'a very pretty invitation!',
href: 'href to the invitation',
media: [
{ type: 'image', src: 'http://site.com/image.jpg', href: 'href to the invitation'}
]
},
action_links: [
{ text: 'come as well!', href: 'href to the invitation' }
]};
FB.ui(publish);
}