Adrian
Adrian

Reputation: 691

Post on Facebook Wall

It seems that the way of posting to your wall or friends wall has change. Can anyone understand how you can do it?

Upvotes: 0

Views: 456

Answers (2)

Brent Baisley
Brent Baisley

Reputation: 12721

Changed since when? Facebook seems to change things every quarter. Some of the latest ways are using the Graph API: http://developers.facebook.com/docs/reference/dialogs/feed/

or using the javascript SDK and the FB.ui method: http://developers.facebook.com/docs/reference/javascript/FB.ui/

FB.ui({
    method:'feed', to:1234567890123, name:'Check this out', link:'http://link.com',
    description:'very funny, a must see'
}, function(response) {
    //log response
}
)

Upvotes: 1

TheEye
TheEye

Reputation: 9346

You just go to your friend's page and use the normal 'Share / Write something' functionality - it will appear on your friend's wall.

Upvotes: 0

Related Questions