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 using php SDK of FB (version 3.2.0) for my application for FB Login and when i tried to get the userid using facebook->getUser() methode , its returns the user id , but when i triedto get the user data using facebook->api('/me') methode it returns the error

Uncaught OAuthException: An active access token must be used to query information about the current user

Both are working if am not logged into FB and getting logged through the FB login link . If am logged into FB and tried to get the user data , it always result in the error

Please help me

share|improve this question
1  
“I am using php SDK of FB (version 3.2.0)” – current version is v.3.2.2, and it contains a bug fix that addresses issues arising from the recent change (code can be exchanged for access token only once) – so please go update it. – CBroe Dec 10 '12 at 10:34
Thanks CBore .... its working now .. I hope that might be my issue :) – raki Dec 10 '12 at 10:53

1 Answer

Check for the user_id first and if it's null reauthorize the user as shown in the following example: http://developers.facebook.com/docs/reference/php/facebook-api/

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.