From b2903212ab05fa2e95f83bb6959411c4509e686a Mon Sep 17 00:00:00 2001 From: Livio Amstutz Date: Wed, 30 Sep 2020 08:40:28 +0200 Subject: [PATCH] cleanup --- example/client/app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/client/app/app.go b/example/client/app/app.go index b747474..1c9c469 100644 --- a/example/client/app/app.go +++ b/example/client/app/app.go @@ -32,7 +32,7 @@ func main() { ctx := context.Background() redirectURI := fmt.Sprintf("http://localhost:%v%v", port, callbackPath) - scopes := []string{oidc.ScopeOpenID, oidc.ScopeProfile, oidc.ScopeEmail, oidc.ScopeAddress, "hodor"} + scopes := []string{oidc.ScopeOpenID, oidc.ScopeProfile, oidc.ScopeEmail, oidc.ScopeAddress} cookieHandler := utils.NewCookieHandler(key, key, utils.WithUnsecure()) provider, err := rp.NewRelayingPartyOIDC(issuer, clientID, clientSecret, redirectURI, scopes, rp.WithPKCE(cookieHandler),