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'd like my app to post on users wall as a page that I own.

How can I do that?

I tried this:

$facebook->api("/<USER_ID>/feed/", "post", array(
            'from' => array('id' => <MY PAGE'S ID>),
            'message' => 'TEST',
        'access_token' => <MY PAGE'S TOKEN>,
));

But I received the following error: OAuthException: (#200) Posts where the actor is a page cannot also include a target_id

Any idea to help me?

share|improve this question

2 Answers

you cannot post to user wall as a page you need to create a application and post as an application but in post you can link with your page and then you can post on user wall

$stram = $facebook->api("/$user/feed", 'post', array(
                'message' => "abcdef ",
                'link'    => 'http://facebook.com/yourpage',
                'picture' => 'http://abc.com/yourpagelogo.jpg',
                'name'    => 'Stackoverflow',
                'description'=> 'hu ha hu ha hu ha hu ha'
                )
share|improve this answer

You can't post to user's wall as a page. Only users can post to users' walls.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.