Facebook API fb_graph 可以检索我的“Questoin”吗?结果与检索提要类似?

发布于 2024-12-13 00:31:19 字数 128 浏览 1 评论 0原文

我有一个脸书页面。我正在使用 fb_graph 检索我页面上的帖子。

我在我的页面上创建了一个问题。我需要使用 fb_graph 或类似的 ruby​​ gem 检索我的问题结果。我可以吗? facebook API 支持吗?

I have a facebook page. I am using fb_graph to retrieve posts on my page.

I created a question on my page. I need to retrieve my question results using fb_graph or similar ruby gem. Can I? Is this supported by facebook API?

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

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

发布评论

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

评论(3

痴情换悲伤 2024-12-20 00:31:19

本周的开发者博客文章宣布了 Questions API。
文档也已添加: https://developers.facebook.com/docs/reference /api/question/

我不确定它是否适用于页面,或仅适用于用户

This week's Developer blog post announced the Questions API.
The documentation has been added too: https://developers.facebook.com/docs/reference/api/question/

I'm not sure if it's applicable to Pages, or only to Users

-残月青衣踏尘吟 2024-12-20 00:31:19

在 lgy 回答之后,我分叉了 fb_graph gem 并添加了问题 API 支持 https://github.com/mahkhaled/fb_graph< /a>

After lgy answer, I have forked the fb_graph gem and added questions API support https://github.com/mahkhaled/fb_graph

别把无礼当个性 2024-12-20 00:31:19

在FbGraph 2.2.1中,您可以获取用户和页面的问题。

要获取用户提出的问题,

user = FbGraph::User.me(ACCESS_TOKEN)
user.questions

要获取页面提出的问题,

page = FbGraph::Page.new(PAGE_ID, :access_token => ACCESS_TOKEN)
page.questions

In FbGraph 2.2.1, you can fetch questions both of users and pages.

To fetch questions asked by an user,

user = FbGraph::User.me(ACCESS_TOKEN)
user.questions

To fetch questions asked by a page,

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