-2

我想显示在 html 中喜欢页面的朋友的数量任何人请告诉我,我知道通过使用简单的 url 我们可以获得页面喜欢但我想知道如何获得喜欢页面的朋友的数量,我也是只想使用 angularjs 和 html 技术

4

1 回答 1

0

这不是直接可能的(只有一个链接)。你可以使用

GET /v2.3/{page-id}?fields=context.fields%28friends_who_like%29

但这需要朋友授予您的应用使用他们数据的权限。

然后您将收到一个summary字段:

"summary": {
    "social_sentence": "4 of your friends like this.", 
    "total_count": 4
}

于 2015-06-17T11:45:46.013 回答