【发布时间】:2014-08-14 07:45:02
【问题描述】:
查询群组中的帖子时,即使帖子有照片,大多数时候也不会返回照片。 我们有一个使用这些照片的工作应用程序,从大约 24 小时前开始,我们几乎没有得到任何照片。
例如,以下帖子 - 45245752193_10152313354342194 有照片而且也是公开的,但是 api 不返回照片:
这是我的查询:
45245752193_10152313354342194?fields=attachments,full_picture,picture
响应中不存在 Full_picture 和图片,在附件中我得到了这个:
"description": "This attachment may have been removed or the person who shared it may not have permission to share it with you.",
"title": "Attachment Unavailable",
"type": "unavailable"
我也尝试了两种不同的方式获取照片,但没有成功。
1.查询{group_id}/feed?fields=attachments,full_picture,picture,object_id,from 我在附件字段中得到与以前相同的错误字符串,图片和完整图片为空。
2.将 fql 与以下查询一起使用:
SELECT source_id,attachment,post_id, message, like_info,comment_info,created_time, share_count,actor_id FROM stream WHERE source_id in (45245752193) and
此处附件字段为空。
【问题讨论】:
标签: facebook facebook-graph-api