我目前能够使用这种类型的请求(使用PHP)获取FB页面提要:
https://graph.facebook.com/{$id}/feed?{$authentication}&limit={$maximum}
它给了我FB页面的最后帖子,包含消息和发布日期。我只想检索此内容+每个帖子图片(如果至少有一个)。
所以我做了这个请求:
https://graph.facebook.com/{$feed}/feed?{$authentication}&fields=attachments&limit={$maximum}
检索内容(文字)+图片。但那里没有约会......
使用内容文字,图片和发布日期检索网页Feed的最佳方法是什么?
答案 0 :(得分:5)
除了文字内容(created_time
)和任何message
之外,还包括attachments
字段以获取帖子时间戳:
示例通用请求:
https://graph.facebook.com/(api_version)/(page_id)?fields=feed{created_time,attachments,message}&access_token=(token_id)
输出中的示例时间戳:
"created_time": "2016-03-17T11:33:59+0000"
答案 1 :(得分:3)
请尝试以下字段:
https://graph.facebook.com/{$feed}/feed?{$authentication}&fields=created_time,from,link,message,picture,type,attachments,source&limit={$maximum}