From 7d8af3d06be9c42c305e219d4a4f3297efb28b6e Mon Sep 17 00:00:00 2001 From: Razvan Savu Date: Wed, 24 Feb 2021 01:03:23 +0200 Subject: [PATCH] Update OAuth scope --- flow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow.ts b/flow.ts index c277b75..9c99766 100644 --- a/flow.ts +++ b/flow.ts @@ -58,7 +58,7 @@ const openIdConnectUrl = "https://accounts.google.com"; const clientId = "511828570984-7nmej36h9j2tebiqmpqh835naet4vci4.apps.googleusercontent.com"; const redirectUri = "http://127.0.0.1:8000"; -const scope = "openid"; +const scope = "openid profile email"; export class AuthFlow { private notifier: AuthorizationNotifier;