I am using below code to post contents to Facebook page that user admins.
I can get the post successful if I just pass 'message' => 'Check out my new blog post!' parameter. But when I try to add link or picture, it returns nothing. Sometimes invalid parameters.
But the documentation shows you can pass link. Can anyone tell what is wrong here.
I am using Facebook sdkphp 4.0 version
$page_post = (new FacebookRequest( $session, 'POST', '/'. $fb_account_id .'/feed', array('link' => 'http://www.example.com/','message' => 'Check out my new blog post!', ) ))>execute()>getGraphObject()->asArray();
// return post_id
print_r( $page_post );
Use this one
$page_post = (new FacebookRequest( $session, 'POST', '/me/feed', array('link' => 'http://www.example.com/','message' => 'Check out my new blog post!', ) ))->execute(); $response = $page_post->getGraphObject(); // return post_id print_r( $response );