facebook图形API不返回我共享的状态
我想抓取所有的Facebook时间轴帖子扔facebook的图形API。
我正在玩图形浏览器,并有一个访问令牌,具有这种权限:(user_posts,read_stream),但是当我在graph-api中调用端点“/ posts”或“/ feed”时,我共享的雕像(不是i创建)在我的时间表(我分享的朋友公共状态)没有返回。
这是我的时间表截图
任何想法?
如果你分享另一个POST - status
那么我不认为有一种方法会显示在你的Feed中。 它会显示谁最先分享了其用户的进料下,下posts
和sharedposts
但是,如果您共享link
则它会在您的Feed下显示为shared_story
来自我的Feed的示例
{
"data": [
{
"id": "XXXXXXXX",
"from": {
"id": "XXXXXXXX",
"name": "XXXXXXXX"
},
"story": "Vrashabh Irde shared a link.",
"story_tags": {
"0": [
{
"id": "XXXXXXXX",
"name": "XXXXXXXX",
"type": "user",
"offset": 0,
"length": 13
}
]
},
"picture": "https://fbexternal-a.akamaihd.net/safe_image.php?d=AQAvV7MyLsxFjRDc&w=130&h=130&url=https%3A%2F%2Ftctechcrunch2011.files.wordpress.com%2F2015%2F05%2Fdave-goldberg.jpg%3Fw%3D560%26h%3D292%26crop%3D1&cfs=1&sx=1&sy=0&sw=292&sh=292",
"link": "http://tcrn.ch/1GR0HU3",
"name": "Dave Goldberg, SurveyMonkey CEO, Dies Unexpectedly",
"caption": "tcrn.ch",
"description": "Silicon Valley and the wider world of technology are mourning the very sudden death of Dave Goldberg, a long time entrepreneur and investor, CEO of..",
"icon": "https://www.facebook.com/images/icons/post.gif",
"actions": [
{
"name": "Comment",
"link": "https://www.facebook.com/XXXXXXXX/posts/XXXXXXXX"
},
{
"name": "Like",
"link": "https://www.facebook.com/XXXXXXXX/posts/XXXXXXXX"
}
],
"privacy": {
"value": "ALL_FRIENDS",
"description": "Your friends",
"friends": "",
"allow": "",
"deny": ""
},
"type": "link",
"status_type": "shared_story",
"created_time": "2015-05-03T14:45:09+0000",
"updated_time": "2015-05-03T14:45:09+0000",
"is_hidden": false,
"subscribed": true
}
这是从我所知道的,我没有看到任何其他文件说,很好有一个来自Facebook的评论在这里,或者你应该提出一个错误,如果这不是有意的。
链接地址: http://www.djcxy.com/p/32621.html上一篇: facebook graph api doesn't return the statuses i shared