本文介绍了如何通过api将多个图像上传到Facebook的一个帖子的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
因此。我不能这样做,我找不到任何解决方案。
So. I can't make this work and i can't find any solution about this.
这是我的代码。
$result1 = $facebook->batchApi('***********/feed', 'POST', array(
'attached_files' => $facebook->attachFile($uploads[2]),
));
$result2 = $facebook->batchApi('*********/feed', 'POST', array(
'attached_files' => $facebook->attachFile($uploads[1]),
));
$res = $facebook->processBatch(array(
"access_token" => $user_profile['data'][0]['access_token'],
));
我正在使用。这只是批处理请求的简单包装。
需要这样发布
I'm using facebook-batch-api. It's just simple wrapper for batch requests.Need make post like this https://www.facebook.com/centrMAN/posts/587573351326832
推荐答案
您不能将多个图片发布到单个Feed。 (不要任何意义)
You cannot post multiple images to a single feed. (Dosen't make any sense either)
您只是张贴照片而不是向照片添加照片时提到的示例链接。
The example link that you've mentioned in simply posting photos, not adding photos to a feed.
所以,而不是 / feed
,只需使用 / photos
API来获取结果。
So, instead of /feed
, simply use the /photos
API to get the result.
这篇关于如何通过api将多个图像上传到Facebook的一个帖子的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!