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:

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.