只获得total_count的朋友 - facebook-graph-api

时间:2014-10-14 16:06:07

标签: facebook-graph-api

me?fields=friends抓取

{
  "friends": {
    ...
    "summary": {
      "total_count": 72
    }
  },
  ...
}

我只想要total_count,但它似乎不是我可以放入查询的有效子字段

me?fields=friends{summary}me?fields=friends{total_count}不起作用。

不是绝对必要,只是好奇为什么不是或是否可能?

1 个答案:

答案 0 :(得分:5)

字段扩展仅适用于对象的字段。

因此,如果对象属于user类型,则可以展开的字段列在https://developers.facebook.com/docs/graph-api/reference/v2.1/user

实施例

me?fields=friends{name,link}

如果您尝试减少为性能而返回的数据,您可以尝试使用该限制以确保不会返回任何朋友(数据数组为空),同时仍然获取摘要部分

me?fields=friends.limit(0)