Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试获取用户帖子或粉丝页面帖子的共享计数...
我试过类似的东西:
graph.facebook.com/[PAGE_ID]_[POST_ID]/?access_token=xxxxxxx
但它不返回共享计数...
还有另一种方法吗?
谢谢。
我使用相同的方法来检索我的应用程序中的共享计数。仅当帖子已被共享时,才会返回共享计数。如果帖子尚未共享,则不返回共享计数。
如果您只想检索共享计数而不是整个帖子对象,请使用https://graph.facebook.com/[PAGE_ID]_[POST_ID]?fields=shares
https://graph.facebook.com/[PAGE_ID]_[POST_ID]?fields=shares
Facebook API 返回以下内容:
"shares": { "count": 252 }