Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.