I'm usign omniauth to login user from facebook and I'm also using devise gem so in my devise.rb initializer file. I added
config.omniauth :facebook, app_id, app_secret,
{:scope => 'email, offline_access', :client_options =>
{:ssl =>
{:ca_file => '/usr/lib/ssl/certs/ca-certificates.crt'}
}
}
and Its working perfectly as I have user 'signed in' in my app but the problem is I'm not getting how to move on and get user profile info and its friends info and also Subscription and status updates.
Therer are graph Api methods available
@graph = Koala::Facebook::API.new(acess_token)
@profile = @graph.get_object("me")
@friends = @graph.get_connections("me", "friends")
But I'm not getting how to get "acess_token" to do all this stuff.
So summing up I need AccessToken kindly provide clear answer plzz
awaiting your response