Using fb_graph gem
To get basic information from a facebook user :
fb_user = FbGraph::User.new(FB_USER_ID)
fb_user = fb_user.fetch
That works pretty fine.
Now I need also to access biography and location
fb_user.bio
fb_user.location.name
Location is nil so I get an error, and bio is blank.
In Facebook API doc http://developers.facebook.com/docs/reference/api/user/
Looks like bio needs user_about_me or friends_about_me permissions.
So I thought that should mean that I need to generate an access token for my app, which I did:
app = FbGraph::Application.new(FB_APP_ID, :secret => FB_APP_SECRET)
access_token = app.get_access_token()
fb_user = FbGraph::User.new(authentication.uid, access_token)
But then I get :
undefined method `[]' for GENERATED_TOKEN:Rack::OAuth2::AccessToken::Legacy
I am not quite sure how to get around that. This is my first day with the Facebook API
QUESTION: How do get extended permission for my app in order to get bio and user location?