html 中某个页面的 Facebook 好友点赞数
Facebook Friends Likes count for a page in html
我想显示在 html 中喜欢某个页面的朋友数量,请告诉我
我知道通过使用简单的 url 我们可以获得喜欢的页面,但我想知道如何获得喜欢某个页面的朋友的数量,我也只想使用技术 angularjs 和 html
这不是直接可能的(只有 link)。你可以使用
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
}
见
我想显示在 html 中喜欢某个页面的朋友数量,请告诉我 我知道通过使用简单的 url 我们可以获得喜欢的页面,但我想知道如何获得喜欢某个页面的朋友的数量,我也只想使用技术 angularjs 和 html
这不是直接可能的(只有 link)。你可以使用
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
}
见