From 5539b0f6e77097330cff0edc14adf0da5d2f5687 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Tue, 20 Nov 2018 11:38:05 -0600 Subject: [PATCH] Change Google scope in external providers sample (#4138) --- src/AuthSamples/samples/Identity.ExternalClaims/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AuthSamples/samples/Identity.ExternalClaims/Startup.cs b/src/AuthSamples/samples/Identity.ExternalClaims/Startup.cs index e535fc0758..01b966b7ae 100644 --- a/src/AuthSamples/samples/Identity.ExternalClaims/Startup.cs +++ b/src/AuthSamples/samples/Identity.ExternalClaims/Startup.cs @@ -40,7 +40,7 @@ namespace Identity.ExternalClaims // Configure your auth keys, usually stored in Config or User Secrets o.ClientId = ""; o.ClientSecret = ""; - o.Scope.Add("https://www.googleapis.com/auth/plus.me"); + o.Scope.Add("https://www.googleapis.com/auth/plus.login"); o.ClaimActions.MapJsonKey(ClaimTypes.Gender, "gender"); o.SaveTokens = true; o.Events.OnCreatingTicket = ctx =>