Facebook - 使用 FQL 从页面(而非用户)获取状态更新
有没有办法使用 FQL 从页面(不是从用户页面,而是从业务页面)获取状态更新,“页面”表的文档不包含任何内容?
所以理论上我的查询是:
SELECT status FROM page WHERE page_id = MYPAGEID
尽管这显然不起作用,并且:
SELECT message FROM status WHERE uid = MYPAGEID
只是返回 NULL。
该页面是公开的,所有安全权限均已关闭。
有什么想法吗?我不明白为什么 Facebook 不允许这样做?
我已经使用过
https://graph.facebook.com/MYPAGEID/feed
,但理想情况下我想返回 XML 以将其集成到提要中。
谢谢。
Is there a way of getting status updates from a Page (not from a users page , but a business page) using FQL , documentation for the 'page' table doesn't contain anything ?
So my query would theoretically be:
SELECT status FROM page WHERE page_id = MYPAGEID
although that obviously doesn;t work , and :
SELECT message FROM status WHERE uid = MYPAGEID
just returns NULL.
The page is public , and all security permissions are off .
Any ideas? I can't see any reason as to why Facebook wouldn't allow this ?
Ive used
https://graph.facebook.com/MYPAGEID/feed
but ideally I'd like to return XML to integrate it into a feed.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要查询
stream
表:或者:
如果您只想检索页面制作的提要!
You need to query the
stream
table:OR:
If you only want to retrieve the feeds made by the page!