有没有办法通过 facebook api 调用或 FQL 来获取 facebook 应用程序在用户墙上发布的帖子。
例如,用户阅读了一篇关于“华盛顿邮报社交阅读器”应用程序的文章,该文章出现在用户墙上的“近期活动”下。
这不会出现在me/feed或me/posts或me/home 中。
我阅读了有关订阅实时更新的文档,但没有提供有关此问题的帮助。
有没有办法通过 facebook api 调用或 FQL 来获取 facebook 应用程序在用户墙上发布的帖子。
例如,用户阅读了一篇关于“华盛顿邮报社交阅读器”应用程序的文章,该文章出现在用户墙上的“近期活动”下。
这不会出现在me/feed或me/posts或me/home 中。
我阅读了有关订阅实时更新的文档,但没有提供有关此问题的帮助。
要获得类似于“Social Reader”的活动,您需要使用以下端点
/me/news.reads
经user_actions.news
许可
示例响应
{
"data": [
{
"id": "10100213573074777",
"from": {
"name": "Philippe Harewood",
"id": "13608786"
},
"start_time": "2011-11-22T22:24:40+0000",
"end_time": "2011-11-22T22:24:40+0000",
"publish_time": "2011-11-22T22:24:40+0000",
"application": {
"name": "Washington Post Social Reader",
"namespace": "wpsocialreader",
"id": "225771117449558"
},
"data": {
"article": {
"id": "10150354603148014",
"url": "https://fb.trove.com/fbwapolabs/me/channels/67284/content/hLt5k",
"type": "article",
"title": "Tom Brady May Have Gone Blind"
}
},
"type": "news.reads",
"no_feed_story": false,
"likes": {
"count": 0,
"can_like": true,
"user_likes": false
},
"comments": {
"count": 0,
"can_comment": true,
"comment_order": "chronological"
}
},