mirror of
https://github.com/open-webui/open-webui.git
synced 2026-03-11 00:04:08 -05:00
feat: support custom "token_endpoint_auth_method" as configurable env var #5680
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zachwalton on GitHub (Jul 1, 2025).
Check Existing Issues
Problem Description
My company's OIDC provider doesn't support the default authlib
token_endpoint_auth_methodvalue ofclient_secret_basic; I get a 401 back from the token API.Desired Solution you'd like
I had to apply the following patch to make it work:
It would be great to make this configurable as an env var.
Alternatives Considered
No response
Additional Context
No response
@tjbck commented on GitHub (Jul 16, 2025):
Addressed with
4f5d949af6in dev@zachwalton commented on GitHub (Jul 16, 2025):
Thanks for the fast turnaround!