I am trying to get the users additional information like gender, birthdate, email, and hometown
. I am using this code below:
$user = Socialite::driver('facebook')->fields([
'first_name', 'last_name', 'email', 'gender', 'birthday', 'location'
])->scopes([
'email', 'user_birthday', 'location'
])->user();
But my problem for now is it is not getting the user location or hometown, sometimes, it also failed to fetch the users' gender and birthday. How can I access the users' data without using the App review in Facebook for developers.