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 have a facebook application that mostly uses the JS SDK and some of the PHP SDK, but the PHP SDK for a few things only.

I use the following bit of code to initialize the application after loading the facebook resources and getting the necessary permissions:

FB.getLoginStatus(function(response) {
    if (response.authResponse) {
       //console.log(response.authResponse);
       fbUserData.uid=response.authResponse.userID;
       fbUserData.accessToken=response.authResponse.accessToken;
       FB.api(
           {
              method: 'fql.query',
              query: 'SELECT name, first_name, last_name, email FROM user WHERE uid='+response.authResponse.userID,
              access_token: fbUserData.accessToken
           },
           function(response) {
           //console.log(response);
           if(!response.error_code && response[0].name.length>0 && response[0].email.length>0){
              fbUserData.email=response[0].email;
              if(response[0].last_name && response[0].first_name){
                 fbUserData.name=response[0].first_name+" "+response[0].last_name;
              }
              else{
                 fbUserData.name=response[0].name;
              }
              .....

It works most of the time, but every once in a while I get the following error for the FQL query: "Error validationg access token..."

See the contents of the authResponse and FQL response below: objects debugged

I have absolutely no clue, why I get that error with a valid access token presented just before, and it only happens occasionally and goes away after closing the window for a while, then comes back later...

Any ideas would be appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.