Created
December 23, 2010 12:40
-
-
Save nov/752914 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'fb_graph' | |
array = FbGraph::Query.new( | |
'SELECT name FROM user WHERE uid = me()' | |
).fetch(ACCESS_TOKEN) | |
p array |
You need to call the "fetch" method with a hash
fetch(access_token: ACCESS_TOKEN)
FbGraph::InvalidRequest: OAuthException :: (#12) fql is deprecated for versions v2.1 and higher
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running the snippet above I get the following error: /Users/Andre/.rvm/gems/ruby-1.9.3-p429/gems/fb_graph-2.7.6/lib/fb_graph/query.rb:24:in `[]': can't convert Symbol into Integer (TypeError)