From e43ac6dfdfd9c9ae928e45628b9471745f327384 Mon Sep 17 00:00:00 2001 From: Giulio Ruggeri Date: Wed, 3 May 2023 12:27:28 +0200 Subject: [PATCH] fix: modify ACRValues parameter type to space separated strings (#388) Co-authored-by: Giulio Ruggeri --- pkg/oidc/authorization.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/oidc/authorization.go b/pkg/oidc/authorization.go index f620ecb..d8bf336 100644 --- a/pkg/oidc/authorization.go +++ b/pkg/oidc/authorization.go @@ -60,7 +60,7 @@ const ( ) // AuthRequest according to: -//https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest +// https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest type AuthRequest struct { Scopes SpaceDelimitedArray `json:"scope" schema:"scope"` ResponseType ResponseType `json:"response_type" schema:"response_type"` @@ -77,7 +77,7 @@ type AuthRequest struct { UILocales Locales `json:"ui_locales" schema:"ui_locales"` IDTokenHint string `json:"id_token_hint" schema:"id_token_hint"` LoginHint string `json:"login_hint" schema:"login_hint"` - ACRValues []string `json:"acr_values" schema:"acr_values"` + ACRValues SpaceDelimitedArray `json:"acr_values" schema:"acr_values"` CodeChallenge string `json:"code_challenge" schema:"code_challenge"` CodeChallengeMethod CodeChallengeMethod `json:"code_challenge_method" schema:"code_challenge_method"`