File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- __version__ = "1.7.1 "
1+ __version__ = "1.7.2 "
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ async def auth_params() -> AuthParams:
2020 oidc_config = await get_oidc_config ()
2121 auth_endpoint = oidc_config .get ("authorization_endpoint" )
2222 data ["oidc" ] = (
23- f"{ auth_endpoint } ?client_id={ settings .OIDC_CLIENT_ID } &redirect_uri={ settings .OIDC_REDIRECT_URI } &response_type=code&scope=openid"
23+ f"{ auth_endpoint } ?client_id={ settings .OIDC_CLIENT_ID } &redirect_uri={ settings .OIDC_REDIRECT_URI } &response_type=code&scope=openid+profile "
2424 )
2525
2626 return data
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ def get_oidc_client():
6161 return OAuth2Client (
6262 client_id = settings .OIDC_CLIENT_ID ,
6363 client_secret = settings .OIDC_CLIENT_SECRET ,
64- scope = "openid" ,
64+ scope = "openid profile " ,
6565 redirect_uri = settings .OIDC_REDIRECT_URI ,
6666 )
6767
You can’t perform that action at this time.
0 commit comments