Search code examples
ruby-on-railsfacebook-graph-apikoala-gem

What is the API class that i might have to use?


irb(main):006:0> @graph = Koala::Facebook::GraphAPI.new

KOALA: Deprecation warning: Koala::Facebook::GraphAPI is deprecated and will be removed in a future version; please use the API class instead. => #


Solution

  • @graph = Koala::Facebook::API.new
    

    all of the classes are aliased from GraphAPI over to API