如何检索页面“信息”来自 PHP 的选项卡
我试图获取此页面上的基本信息数组 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是你需要做的。
manage_pages
权限对您的应用进行身份验证。me/accounts
并在该列表中找到将具有页面访问令牌的页面。/me?access_token={pageAccessToken}
在 Graph API Explorer 中尝试一下:http://developers.facebook.com/tools/explorer
Here's what you need to do.
manage_pages
permission.me/accounts
and find the page in that list which will have a page access token./me?access_token={pageAccessToken}
Try it out in the Graph API Explorer: http://developers.facebook.com/tools/explorer