Graph api 获取 facebook 应用程序数据

发布于 2024-12-11 20:58:44 字数 81 浏览 0 评论 0原文

我想知道是否可以从应用程序获取数据,例如通过 Graph api 或 FQL 进行讨论或扩展信息?我正在使用 PHP sdk,尽管这应该没什么关系。

I was wondering if it's possible to get data from apps, such as discussions or extended info through Graph api or FQL? I'm using the PHP sdk, though it shouldn't matter much.

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

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

发布评论

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

评论(3

梦途 2024-12-18 20:58:44

这是不可能的。做不到。

It isn't possible. Can't be done.

逆蝶 2024-12-18 20:58:44

我无法理解你到底想要什么。

但我认为如果你需要与应用程序相关的信息,有一个可用的图形 API,请参阅以下链接中的文档:

http://developers.facebook.com/docs/reference/api/application/

应用程序图对象的 feed 连接可以获得应用程序的提要..

如果您不是在寻找这个,您能解释一下吗进一步了解您到底需要什么。

I couldn't understand what you exactly want..

But I think if you need information related to app there is a graph api available for this, please refer the documentation from the following link,

http://developers.facebook.com/docs/reference/api/application/

The feed connections of application graph object could get the feed for the application..

If you are not looking for this, can you explain a bit further about what you need exactly.

瑾夏年华 2024-12-18 20:58:44

要从某些 Facebook 应用程序的留言墙上获取帖子和评论您可以在此处进行测试 以下 FQL 查询

SELECT 
post_id, viewer_id, message, app_id, source_id, 
created_time, updated_time, filter_key, attribution,
actor_id, target_id, message, app_data, action_links, 
attachment, impressions, comments, likes, privacy, 
permalink, xid, tagged_ids, message_tags, description_tags 
FROM stream WHERE 
source_id = {ID_of_wall_of_your_App}

,其中我的应用程序墙的 url 如下:
http://www.facebook.com/pages/display_name/ID_of_wall_of_your_App#!/pages/display_name/ID_of_wall_of_your_App?sk=wall

我稍后会再更新一次。

To get posts and comments from wall of some Facebook application you may test here following FQL query

SELECT 
post_id, viewer_id, message, app_id, source_id, 
created_time, updated_time, filter_key, attribution,
actor_id, target_id, message, app_data, action_links, 
attachment, impressions, comments, likes, privacy, 
permalink, xid, tagged_ids, message_tags, description_tags 
FROM stream WHERE 
source_id = {ID_of_wall_of_your_App}

where url of my app's wall is as follows:
http://www.facebook.com/pages/display_name/ID_of_wall_of_your_App#!/pages/display_name/ID_of_wall_of_your_App?sk=wall

I'll make one more an update later.

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