From 7df573e5663687571406dd0f9cd56240efa690e4 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Mon, 1 Jul 2024 07:04:01 -0400 Subject: [PATCH] Update example response type to code flow (#32971) --- .../webassembly/standalone-with-authentication-library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/blazor/security/webassembly/standalone-with-authentication-library.md b/aspnetcore/blazor/security/webassembly/standalone-with-authentication-library.md index 0364c3d503..ff8c5d01d2 100644 --- a/aspnetcore/blazor/security/webassembly/standalone-with-authentication-library.md +++ b/aspnetcore/blazor/security/webassembly/standalone-with-authentication-library.md @@ -103,7 +103,7 @@ Google OAuth 2.0 OIDC example for an app that runs on the `localhost` address at "ClientId": "2...7-e...q.apps.googleusercontent.com", "PostLogoutRedirectUri": "https://localhost:5001/authentication/logout-callback", "RedirectUri": "https://localhost:5001/authentication/login-callback", - "ResponseType": "id_token" + "ResponseType": "code" } } ```