I have been using Socialite for a few days with Facebook without issue. Today, I started getting this error.
{ "error": 
    { 
       "message": "An active access token must be used to query information 
        about the current user.", "type": "OAuthException",
        "code": 2500, "fbtrace_id": "FTvIz9t1LT+"
   }
}
The error seems straight forward but I can't seem to see a solution online. Is there a way to reset my access_token using Socialite.
Please note: I pretty much followed this tutorial
The error is in the callback when I try and get the
$userProvider try { 
    $userProvider = Socialite::driver('facebook')->user();
} catch (Exception $e) {
   Log::info('Callback Error ' . $e->getMessage());
   return Redirect::to('redirect');
}
Thanks, Rich
This was happening to me also. I fixed it running composer update and then composer dump-autoload. This will update Socialite to v2.0.21
Cheers
It is because v2.2 of Facebook API is no longer available. Update the laravel/socialite package:
composer update laravel/socialite
This way it won't affect your other packages.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With