Hello Guys,
While working on FB APP you might encounter with this error "An active access token must be used to query information about the current user". I have faced the same problem and during R&D I got to know FB.init works async mode so it is possible FB.init still waiting for Access token and api hit for another request like FB Data.
FB.getLoginStatus(function(response){
getFBData(); // YOU CAN USE YOUR CODE/FUNCTION HERE THAT GENERATING ISSUE
});
0 Comment(s)