feat: prompt option (#59)
* feat: prompt option * Update pkg/rp/relaying_party.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
parent
60560ce239
commit
6cfd02e4c9
1 changed files with 9 additions and 0 deletions
|
@ -401,6 +401,15 @@ func WithCodeChallenge(codeChallenge string) AuthURLOpt {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//WithPrompt sets the `prompt` params in the auth request
|
||||||
|
func WithPrompt(prompt oidc.Prompt) AuthURLOpt {
|
||||||
|
return func() []oauth2.AuthCodeOption {
|
||||||
|
return []oauth2.AuthCodeOption{
|
||||||
|
oauth2.SetAuthURLParam("prompt", string(prompt)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
type CodeExchangeOpt func() []oauth2.AuthCodeOption
|
type CodeExchangeOpt func() []oauth2.AuthCodeOption
|
||||||
|
|
||||||
//WithCodeVerifier sets the `code_verifier` param in the token request
|
//WithCodeVerifier sets the `code_verifier` param in the token request
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue