如何将多个图像附加到Facebook提要消息?

时间:2015-01-28 07:12:43

标签: facebook facebook-graph-api feed

现在我使用此方法添加Feed消息:

$response = (new FacebookRequest(
                    $session, 'POST', '/me/feed', array(
                        'link' => $this->cafe->getUrlForPost(),
                        'name' => $this->cafe->getTextForPost(),
                        'picture' => 'http://' . $_SERVER['HTTP_HOST'] . $this->getImageForPost()
                    )
                ))->execute()->getGraphObject();

有没有办法在图片字段中添加多个图片?或者你可能有一个解决方法吗?

感谢您的回答。

1 个答案:

答案 0 :(得分:1)

不幸的是,现在您无法在一次API调用中添加多个图像。您只能进行多次调用,并且可以使用批量请求:https://developers.facebook.com/docs/graph-api/making-multiple-requests