1

我使用 Graph API 从我的托管页面获取某些数据。我需要的是我页面上的点赞、签到和talking_about_count。当我添加签入和talking_about_count 时,我收到API 不知道这些字段的错误。所以我删除了那些,只要求喜欢和 id。API 返回的是一个列表,其中包含来自页面的帖子,仅显示 id、创建日期和喜欢的内容(如果有的话)。

我测试了其他一些字段,例如 about 和 website,但它们给出的错误与 checkins 和talking_about_count 相同,因此我无法从我的页面中获取基本数据..

我使用的链接是这样的:

https://graph.facebook.com/168707433219493/feed?access_token=[Access_Token]&fields=id,likes,checkins,talking_about_count

我得到的错误是:

{
   "error": {
      "message": "(#100) Unknown fields: checkins,talking_about_count.",
      "type": "OAuthException",
      "code": 100
   }
}

当我只要求 id 并喜欢时,我得到:

{
   "data": [
      {
         "id": "168707433219493_333476503426186",
         "created_time": "2012-11-28T19:38:57+0000"
      },
      {
         "id": "168707433219493_370257573064477",
         "created_time": "2012-11-22T08:12:11+0000"
      },
      {
         "id": "168707433219493_423778884356339",
         "likes": {
            "data": [
               {
                  "name": "Guido van Tricht",
                  "id": "1117357415"
               }
            ],
            "count": 1
         },
         "created_time": "2012-11-19T22:46:01+0000"
      }
   ],
   "paging": {
      "previous": "https://graph.facebook.com/168707433219493/feed?fields=id,likes&access_token=[Access_Token]&limit=25&since=1354131537&__previous=1",
      "next": "https://graph.facebook.com/168707433219493/feed?fields=id,likes&access_token=[Access_Token]&limit=25&until=1350819853"
   }
}

我希望有人知道如何解决我的问题,在此先感谢。

4

1 回答 1

0

talking_about_count应该在 中/PAGE_ID,而不是在提要中。

为什么不从以下位置获取此数据:

https://graph.facebook.com/168707433219493?access_token=[Access_Token]
于 2012-11-29T15:42:12.140 回答