What's your Laravel version?
I've experienced the exact same problem and after going through the socialite package and make little changes, it solves the problem. You might want to give it a try.
vendor/laravel/socialite/TwoFacebookProvider line 81
Replace this
parse_str($response->getBody(), $data);
with
$data = json_decode($response->getBody(), true);
It seems like the data isn't adding