ruby - How to get my Facebook friends with OmniAuth in Rails? -
i have simple rails app can log in using facebook through omniauth.
is there way obtain facebook friends using omniauth facebook gem? need use other gems that? (if so, ones best ones - updated/etc).
you can use koala gem works facebook graph api.
@graph = koala::facebook::api.new(oauth_access_token) friends = @graph.get_connections("me", "friends")
Comments
Post a Comment