1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00

feat: added check for Linkedin OAuth

This commit is contained in:
Christy Jacob 2022-05-05 19:51:02 +04:00
parent 7e4e0135b6
commit 974a684032

View file

@ -151,13 +151,17 @@ class Linkedin extends OAuth2
/**
* Check if the OAuth email is verified
*
* If present, the email is verified. This was verfied through a manual Linkedin sign up process
*
* @param $accessToken
*
* @return bool
*/
public function isEmailVerified(string $accessToken): bool
{
return false;
$email = $this->getUserEmail($accessToken);
return !empty($email);
}
/**