如何检索页面“信息”来自 PHP 的选项卡

发布于 2024-12-26 07:14:17 字数 491 浏览 0 评论 0原文

我试图获取此页面上的基本信息数组 http:// www.facebook.com/pages/Nichi-Vendola/38771508894?sk=info

我正在使用 FQL 获取图片个人资料、粉丝数量和姓名:

$result = $facebook->api(array(
'method' => 'fql.query',
'query' => 'select fan_count, name, pic_square from page where page_id = '.$page_id.";"
));

但我不能弄清楚如何获取工作职位或宗教等信息。 我也尝试过使用页面 ID 作为用户 ID,但没有成功。 我在 Facebook 开发者上没有找到任何相关信息,请帮忙

I'm trying to get the basic information array on this page http://www.facebook.com/pages/Nichi-Vendola/38771508894?sk=info

I'm using FQL to get picture profile, fan counts and name:

$result = $facebook->api(array(
'method' => 'fql.query',
'query' => 'select fan_count, name, pic_square from page where page_id = '.$page_id.";"
));

But i can't figure out how to get informations like Work position or Religion..
I've also tried to use the page id as a user id but didn't work..
I haven't found anything about this on Facebook Developers, please help

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

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

发布评论

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

评论(1

走野 2025-01-02 07:14:17

这就是你需要做的。

  1. 让页面管理员使用 manage_pages 权限对您的应用进行身份验证。
  2. 调用 me/accounts 并在该列表中找到将具有页面访问令牌的页面。
  3. 获取页面访问令牌并查询 /me?access_token={pageAccessToken}

在 Graph API Explorer 中尝试一下:http://developers.facebook.com/tools/explorer

Here's what you need to do.

  1. Have the admin of the page authenticate you app with the manage_pages permission.
  2. Call me/accounts and find the page in that list which will have a page access token.
  3. Take page access token and query /me?access_token={pageAccessToken}

Try it out in the Graph API Explorer: http://developers.facebook.com/tools/explorer

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