I also have problems with posting on wall, even with the new params - code (as3)
public function postToWallPopup( friendID : String , str : String) : void {
var attachement : Object = new Object () ;
attachement.link = '
https://developers.facebook.com/docs/reference/dialogs/';
attachement.picture = '
http://boallen.com/assets/images/randbitmap_true.png';
attachement.name = 'Test';
attachement.caption = str;//'Reference Documentation';
attachement.description = "Test";
attachement.to = friendID;
FacebookMobile.api("/me/feed",postToWallPopupCallback,attachement,"POST");
}
function postToWallPopupCallback(success:Object, fail:Object):void
{
trace("called");
}
protected function button1_clickHandler(event:MouseEvent):void
{
postToWallPopup("1391283", "test");
}
Above code is not working - what is the problem?