Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing a rails 3.2 application and am authenticating using omniauth-facebook. This part has been giving me no problems. I get the request.env['omniauth.hash'] successfully and I extract the Oauth token as such.

auth_hash = request.env['omniauth.hash']
token = auth_hash['credentials']['token']

Afterwards I try to hit Facebook's Open Graph using fb_graph as such:

user = FbGraph::User.me(token)

However when I do this, my user is not loaded. I just get a blank user and it seems like facebook is not accepting my token as a valid token for some reason. Am I doing something wrong? Is the token I have not the one I need to make Facebook Open Graph requests? Help is much appreciated!

share|improve this question
Have you tried making a curl request using the token you get back? What's the response from that? – Swift Dec 5 '12 at 23:22

1 Answer

up vote 1 down vote accepted

Try user = FbGraph::User.me(token).fetch

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.