diff --git a/src/clients/spotify/provider/Spotify.php b/src/clients/spotify/provider/Spotify.php index 2ce5e30..1795202 100644 --- a/src/clients/spotify/provider/Spotify.php +++ b/src/clients/spotify/provider/Spotify.php @@ -60,7 +60,10 @@ public function getResourceOwnerDetailsUrl(AccessToken $token): string */ protected function getDefaultScopes(): array { - return []; + return [ + // Don't use enum's until PHP 8.1 support can be guaranteed + 'user-read-email', + ]; } /**