Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add authCodeOptions to openidConnect Provider #580

Conversation

JensHeise
Copy link
Contributor

This pull request enables the possibility to add custom URL params to the authentication URL.
It can be used as follows:

openidConnect, err := openidConnect.New(clientId, clientSecret, callBackUri, discoveryUri, "openid", "profile", "email", "offline_access")
if err != nil {
	slog.Error("Error creating openidConnect provider: ", "err", err.Error())
}
openidConnect.SetAuthCodeOptions(map[string]string{
	"domain_hint": "yourdomain.com",
})

Use cases for the URL params are e.g. domain hints or prompt configuration.

@techknowlogick techknowlogick merged commit 8d5b578 into markbates:master Jan 14, 2025
15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants