我使用下面的代码将内容发布到用户管理员的Facebook页面。
如果我只是通过'message'=>我可以获得成功的帖子“查看我的新博文!”参数。但是当我尝试添加链接或图片时,它什么都不返回。有时参数无效。
但文档显示您可以传递链接。谁能告诉我这里有什么问题。
我正在使用Facebook sdkphp 4.0版
$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 );
答案 0 :(得分:0)
使用此
$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 );