Answer the question
In order to leave comments, you need to log in
How to pull VK email using socialite laravel?
$userSocial = Socialite::driver('vkontakte')->user();
$user = new User;
$user->name = $userSocial->name;
$user->email = $userSocial->email;
$user->save();
I'm trying to do so.
According to the documentation I don't understand anything https://github.com/SocialiteProviders/VKontakte/bl...
Answer the question
In order to leave comments, you need to log in
You need to look at the answer from VK, I have the following handler:
public static function getUserEmail($user, $provider)
{
if($provider == 'vkontakte') {
return $user->accessTokenResponseBody['email'] ?? null;
}
return $user->email;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question