Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

3 Answers

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

share|improve this answer
up vote 1 down vote accepted

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

share|improve this answer

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
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.