目前,当我通过 GraphAPI 查看我的帖子时: https ://graph.facebook.com/me/posts/
有些帖子的“故事”参数像这样被截断(注意 toe 这个词后面的 ...):
{
"id": "xxxxxxxxx_yyyyyyyyyyyyy",
"from": {
"name": "zzzzzz",
"id": "1234567890"
},
"story": "\"those things pivot at the toe,...\" on XYZ's photo.",
"story_tags": {
"39": [
{
"id": 11111,
"name": "XYZ",
"offset": 39,
"length": 22,
"type": "user"
}
]
}
以上是对 facebook 中一张照片的评论,因此我在 SO 其他地方看到的 graph api ids=http://.... 方法不起作用。当我尝试通过 FQL 将 id 传递给评论表时,我没有返回任何数据。我在访问令牌中拥有所有适当的权限。
总的来说,我想要实现的是一种获取用户最近在 facebook 上编写/键入的所有内容的方法,所以我需要:
1.status 更新 - 通过以下方式实现:
select time, message from status where uid=me()
2.签到 - 仍在努力
3.评论照片或处理其他人的状态 - 仍在处理此问题以及此帖子的原因