使用图 API 获取 Facebook 页面的 Facebook 洞察

发布于 2024-11-13 12:15:27 字数 340 浏览 4 评论 0原文

我已经通过使用 appid 和密钥来获取访问令牌来获取 facebook 应用程序的洞察数据,现在我想获取我的 facebook 页面的洞察数据,我不知道我用什么来代替密钥来获取访问令牌。 我通过此网址发送请求以获取应用程序见解数据 https: //graph.facebook.com/"+appId+"/insights?access_token="+token 现在我需要知道我使用什么来代替 appId 以及如何找到 facebook 页面的访问令牌。

I am already getting insight's data for facebook application by using appid and secret key to get access token now i want get insight data for my facebook page , I don't know what I use in the place of secret key to access token.
I send request by this url to get app insights data https://graph.facebook.com/"+appId+"/insights?access_token="+token
now i need to know what i use intead of appId and how find access token of facebook page.

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

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

发布评论

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

评论(3

最冷一天 2024-11-20 12:15:27

插入pageid而不是appid,这样你就可以获得facebook页面的洞察

https://graph.facebook.com/"+pageId+"/insights?access_token="+token

Insert pageid instead of appid, in this way you will be able to get facebook page insights

https://graph.facebook.com/"+pageId+"/insights?access_token="+token
面如桃花 2024-11-20 12:15:27

看看这里。您将能够列出帐户的所有页面并提取 page_id 的统计信息。

https://github.com/facebook/insights-api-sample

Take a look at here. You will be able to list all pages for account and pull stats for a page_id.

https://github.com/facebook/insights-api-sample

预谋 2024-11-20 12:15:27

Facebook 图形 API 更改了页面洞察的 URL 模式,在最新版本中,他们至少需要矩阵,否则他们将抛出如下错误

“error_user_msg”:“没有指定要获取的指标。请指定要获取一个或多个指标,然后重试。”,

新格式如下

/{post-id}/insights/{metric}(仅限页面上的帖子)*

请参阅以下链接了解更多信息信息

https://developers.facebook.com/docs/graph -api/reference/v3.0/insights

The Facebook graph API has changed the URL pattern for the page insights, In the latest version they required at least on matrix otherwise they will throw the error like below

"error_user_msg": "No metric was specified to be fetched. Please specify one or more metrics to be fetched and try again.",

The new format is like below

/{post-id}/insights/{metric} (Posts on a Page only)*

Please refer the below link for more information

https://developers.facebook.com/docs/graph-api/reference/v3.0/insights

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