fix: autenticazione Microsoft

This commit is contained in:
Beppe 2024-10-21 13:09:36 +02:00 committed by valentina
parent 3424bc8864
commit e7630c648b
1 changed files with 1 additions and 1 deletions

View File

@ -48,6 +48,6 @@ class MicrosoftLogin extends Azure implements ProviderInterface
{
$me = $this->get('https://graph.microsoft.com/v1.0/me', $access_token);
return $me['mail'];
return $me['userPrincipalName'];
}
}