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.

Using Rails3 and koala gem, how to retrive all profiles of users who 'Like' a FB page (http://facebook.com/DAKINE for example). Is it possible at all? As the final result i need to get a bunch of user profiles, stored in db.

Thanks!

share|improve this question
That would probably be illegal... – sethvargo Mar 20 '11 at 1:38
Umm.. Why? As an admin of FB Page, i can see all users who like it. – vsh Mar 22 '11 at 11:55

1 Answer

up vote 5 down vote accepted
+100

It's pretty easy to get the likes of any page on facebook, particularly with the Koala gem. Since the facebook likes for a given page are publically accessible (see here), you can access them without using an API key.

For example, to obtain the number of likes for this page: facebook.com/foofighters you could do:

graph = Koala::Facebook::GraphAPI.new
likes = graph.get_object("foofighters")["likes"]

I'm assuming you have your user profiles stored in your application database, and each (or some) of these have associated facebook IDs? If you're trying to save the 'like' data locally for your users, you could do something along the lines of:

graph = Koala::Facebook::GraphAPI.new
@users.each do |user|
  user.likes = graph.get_object(user.facebook_id)["likes"]
  user.save
end
share|improve this answer
Thanks. Actually i need to get info from each profile (like link to profile, userpic or any public available info) of user who press 'Like' on specific page (for example 'foofighters'). Is it possible? – vsh Mar 22 '11 at 11:27

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.