我正在制作一个rails网站,我想与Facebook互动并从网页上获取一些照片 我看过这个教程,但它只显示了朋友 https://github.com/arsduo/koala/ 我已经做了这个步骤
@graph = Koala::Facebook::API.new(oauth_access_token)
profile = @graph.get_object("me")
friends = @graph.get_connections("me", "friends")
@graph.put_connections("me", "feed", :message => "I am writing on my wall!")
现在的问题是 如何使用考拉宝石从Facebook页面获取照片?
答案 0 :(得分:0)