使用 JavaScript 返回域的 Facebook 洞察数据

发布于 2024-10-29 14:06:37 字数 169 浏览 1 评论 0原文

我正在寻找一个非常简单的“hello world”类型的示例,它将帮助我了解如何使用 JavaScript 检索我的域的 Insight 数据。

我想返回我网站上当天的点赞总数 (domain_like_adds),但我不知道如何操作。 Facebook 文档让我在原地转圈。

感谢您的帮助!

I'm looking for a very simple "hello world" type of example that will help me understand how to use JavaScript to retrieve the Insight data for my domain.

I want to return the total number of Likes (domain_like_adds) for the day on my website, but I'm not sure how to go about it. The Facebook documentation has me running in circles.

Thanks for your help!

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

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

发布评论

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

评论(1

七色彩虹 2024-11-05 14:06:37

有关如何定义查询的更多信息,请参阅此页面:

http://developers.facebook .com/docs/reference/fql/insights/

这是基本查询和带有回调函数的 facebook JS API 查询:

var insight_domain = "http://www.mydomain.com";

var insight_query = "SELECT metric, value FROM insights where metric="domain_like_adds" AND end_time=end_time_date('2011-04-06')  AND period=period('day') AND object_id in (select id from object_url where url ='{0}')";

var query = FB.Data.query(insight_query, insight_domain);
query.wait(function(data) {
  //process your insight data here
});

See this page for more information on how to define your query:

http://developers.facebook.com/docs/reference/fql/insights/

Here's the basic query and facebook JS API query with callback function:

var insight_domain = "http://www.mydomain.com";

var insight_query = "SELECT metric, value FROM insights where metric="domain_like_adds" AND end_time=end_time_date('2011-04-06')  AND period=period('day') AND object_id in (select id from object_url where url ='{0}')";

var query = FB.Data.query(insight_query, insight_domain);
query.wait(function(data) {
  //process your insight data here
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文