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 an FB account and i have created a fan page for my club and few other pages as well. I have an app in Ruby on Rails. I want to publish some feed on my club fan page. How can i do this? I have been using Koala Gem and able to successfully post to my wall but not on to the page. I want to access the list of all the fan pages associated with my account instead of giving the name of specific page.

here is my simple method which i am using to communicate to FB Graph API.

def facebook
    @facebook ||= Koala::Facebook::GraphAPI.new(oauth_token)
    block_given? ? yield(@facebook) : @facebook
rescue Koala::Facebook::APIError => e
    logger.info e.to_s
    nil # or consider a custom null object
end
share|improve this question

2 Answers

Perhaps this post may be helpful to you.

http://stackoverflow.com/questions/11217761/gathering-a-users-news-feed-with-koala-ruby
share|improve this answer
Thanks Sumit for answering, but i believe there will be some other way instead of using Fql. – Nadeem Yasin Feb 2 at 7:48
1  
@Nadeem Yasin, FQL is support API from Facebook(kind of Query Language). So use it as per your need. Their may be some other way instead of waiting use it as a work around. – Sumit Munot Feb 2 at 8:19
+1 for your above comment, we should carry on with this way instead waiting for some other way. – Nadeem Yasin Feb 2 at 9:46
@Nadeem Yasin, Thanks. – Sumit Munot Feb 2 at 11:58
up vote -1 down vote accepted

Answer submitted by Sumit can be an approach but after searching around some more forums, finally i got an elegant way to do it.

@user_graph = Koala::Facebook::API.new(user_access_token)
pages = @user_graph.get_connections('me', 'accounts')
# get access token for first page
first_page_token = pages.first['access_token']

# or: retrieve access_token for a given page_id
page_token = @user_graph.get_page_access_token(page_id)

Passing on the "accounts" parameter to get_connection worked elegantly for me. Here is the reference to API.

And one last thing, never forget to add the "manage_pages" permission in your permissions list.

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.