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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

JensHeise
Copy link

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.

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.

1 participant