使用 FQL 查询 Facebook 页面的见解和点赞
我们为客户运行一些 Facebook 页面,我们希望运行一些报告,例如昨天有很多人喜欢这些页面。
我可以看到这可以通过 FQL 来完成,但您需要一个 access_token 才能在 (C#) 中使用 Facebook Graph API 运行查询。
对于这些 Facebook 页面,没有与它们关联的应用程序,因此如果没有 app_id,我如何获得身份验证才能运行这些查询?
谢谢
We run some facebook pages for our clients and we'd like to run off some reports, like many people LIKED those pages yesterday, for example.
I can see that this can be done by FQL, but you need an access_token to run the queries using Facebook Graph API in (C#).
For these Facebook pages there isn't an app associated with them, so without app_id how can I get authenticated to be able to run those queries ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个应用程序,然后用它来检索统计数据。
如果您随后获得页面管理员用户的访问令牌并请求 read_insight 扩展权限,您可以获得每个页面的见解数据,这将为您提供大量统计信息,以方便的 JSON 格式报告。
有关图形 API 中见解的更多详细信息,请参阅此处
http://developers.facebook。 com/docs/reference/api/insights/
You could create an app that you then use to retrieve the stats.
If you then get an access token for a user that is an admin of the pages and request the read_insight extended permission you can get the insights data for each page, which will give you plenty of stats to report in a handy JSON format.
See here for more details on the insights in the graph API
http://developers.facebook.com/docs/reference/api/insights/