diff --git a/helios_auth/auth_systems/linkedin.py b/helios_auth/auth_systems/linkedin.py index 7e8fc77c4..5842498f3 100644 --- a/helios_auth/auth_systems/linkedin.py +++ b/helios_auth/auth_systems/linkedin.py @@ -22,7 +22,7 @@ def get_oauth_session(redirect_url=None): return OAuth2Session( settings.LINKEDIN_CLIENT_ID, redirect_uri=redirect_url, - scope='openid profile email', + scope='email,openid,profile', ) def get_auth_url(request, redirect_url):