From 0a4be3ba429fcef914a5f96040254612571fbe66 Mon Sep 17 00:00:00 2001 From: "dmitriy.karelin" Date: Wed, 21 Sep 2022 09:39:36 +0300 Subject: [PATCH] feat(ott-2680): add profile to scope --- src/features/AuthServiceApp/helpers/getAuthUrl/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/AuthServiceApp/helpers/getAuthUrl/index.tsx b/src/features/AuthServiceApp/helpers/getAuthUrl/index.tsx index f33525fc..83cc78cf 100644 --- a/src/features/AuthServiceApp/helpers/getAuthUrl/index.tsx +++ b/src/features/AuthServiceApp/helpers/getAuthUrl/index.tsx @@ -12,7 +12,7 @@ const getQueryString = (authProvider: AuthProviders, urlParams: Settings) => { nonce: urlParams.nonce || '0394852-3190485-2490358', redirect_uri: `${window.location.origin}${PAGES.oauth}`, response_type: 'token id_token', - scope: 'openid email', + scope: 'openid email profile', state: urlParams.state || '', }).toString()