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?