I can post data to my facebook wall.After I posted data to my facebook wall via php , I can see data that I posted.It is working.
But I don't know how can I post data to newly created page?
$facebook = new Facebook(array(
'appId' => 'xxx',
'secret' => 'yyy',
));
$ret_obj = $facebook->api('/Facebook_PageName/feed/', 'POST',
array(
'message' => '*** Microdigit Microdigit ****',
'name' => 'name 777 after log out test',
'caption' => 'this is caption for action link',
'description' => 'here goes description and links http:anotherfeed.com | http://facebook.com/anotherfeed',
'picture' => 'http://www.google.com/tv/images/slivetv.png',
'link' => 'www.yahoo.com',
'properties' => array(
array('text' => 'test link 1', 'href' => 'http://anotherfeed.com/?ref=1'),
array('text' => 'test link 1', 'href' => 'http://anotherfeed.com/?ref=1'),
),
));
echo '<pre>Post ID: ' . $ret_obj['id'] . '</pre>';
It say me that OAuthException: (#200) The user hasn't authorized the application to perform this action
But when I try to post to my wall(not page) again, then It work.
I don't know what I do wrong, could anyone please give me suggestion.