如何获取给定时间段内 Facebook 粉丝专页的粉丝数量?

发布于 2024-12-11 16:49:45 字数 197 浏览 0 评论 0原文



我想获取 Facebook 粉丝专页过去 30 天的粉丝数量。我可以通过调用 Facebook Graph API http://graph.facebook.com/id 获取当前粉丝数量,我可以从响应 JSON 中获取“喜欢”对象的值。
但是,我怎样才能获得上个月每一天的粉丝数呢?我需要数据数组。

谢谢你!

I want to get facebook fanpage's number of fans for last 30 days. I can get current fans count calling Facebook Graph API http://graph.facebook.com/id where I get value of "likes" object from response JSON.
But, how can I get fans count for each day of last month? I need array of data.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抽个烟儿 2024-12-18 16:49:45

您需要获取页面的访问令牌,并请求 manage_pages 权限。
获得此信息后,您将能够查询http://graph.facebook.com/{page_id}/insights - 您需要的所有统计信息都可以从此端点检索。

You'll need to get an access token for your page, and request the manage_pages permission.
Once you have this you will be able to query http://graph.facebook.com/{page_id}/insights - all the statistical information you need can be retrieved from this endpoint.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文