如何将多个图像附加到 Facebook 提要消息?
How I can attach multiple image to facebook feed message?
现在我使用这种方法添加提要消息:
$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();
有没有办法在图片字段中添加多张图片?或者您对此有解决方法吗?
感谢您的回答。
遗憾的是,现在您不能在一次 API 调用中添加多张图片。您只能进行多次调用,并且可以使用批处理请求:https://developers.facebook.com/docs/graph-api/making-multiple-requests
现在我使用这种方法添加提要消息:
$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();
有没有办法在图片字段中添加多张图片?或者您对此有解决方法吗?
感谢您的回答。
遗憾的是,现在您不能在一次 API 调用中添加多张图片。您只能进行多次调用,并且可以使用批处理请求:https://developers.facebook.com/docs/graph-api/making-multiple-requests