Hey!
So i just got devise and fb login to work on my rails project, but I would like to get more info about the user when they log in. I added user_about_me to the scope of the request and that got me a lot of info, but I would also like to get the users music/movies/etc. I tried adding user_interests but it doesnt seem to send anything different than before. Any ideas?
Here is my devise.rb section for facebook
config.oauth :facebook, '???????', '??????????????',
:site => 'https://graph.facebook.com/',
:authorize_path => '/oauth/authorize',
:access_token_path => '/oauth/access_token',
:scope => %w(email user_interests user_about_me)
When I print the data it returns there is no sign of users interests. Any ideas?
Thanks!