如何获取给定时间段内 Facebook 粉丝专页的粉丝数量?
我想获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要获取页面的访问令牌,并请求
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.