docs(auth): add OpenID Connect token placeholders and OPENID_EXPOSE_SUB_COOKIE documentation#483
Open
busla wants to merge 1 commit intoLibreChat-AI:mainfrom
Open
docs(auth): add OpenID Connect token placeholders and OPENID_EXPOSE_SUB_COOKIE documentation#483busla wants to merge 1 commit intoLibreChat-AI:mainfrom
busla wants to merge 1 commit intoLibreChat-AI:mainfrom
Conversation
…UB_COOKIE documentation - Added OPENID_EXPOSE_SUB_COOKIE environment variable documentation in token-reuse.mdx - Added table of seven available OpenID token placeholders in custom_endpoint.mdx - Documented placeholders: access token, ID token, user ID, email, name, and expiration - Added practical usage example showing OpenID tokens in custom endpoint headers - Explains cross-origin OAuth callback flow support for advanced authentication scenarios Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
|
@busla is attempting to deploy a commit to the LibreChat's projects Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add comprehensive documentation for OpenID Connect authentication features, including the new
OPENID_EXPOSE_SUB_COOKIEconfiguration option and seven available OpenID token placeholders for use in custom endpoint headers.Why
Developers need clear guidance on:
Changes
token-reuse.mdx
OPENID_EXPOSE_SUB_COOKIEenvironment variable documentationsubclaimcustom_endpoint.mdx
{{LIBRECHAT_OPENID_TOKEN}}- OpenID access token (generic alias){{LIBRECHAT_OPENID_ACCESS_TOKEN}}- OpenID access token{{LIBRECHAT_OPENID_ID_TOKEN}}- OpenID ID token{{LIBRECHAT_OPENID_USER_ID}}- User ID from OpenID claims{{LIBRECHAT_OPENID_USER_EMAIL}}- User email from OpenID claims{{LIBRECHAT_OPENID_USER_NAME}}- User name from OpenID claims{{LIBRECHAT_OPENID_EXPIRES_AT}}- Token expiration timestampTest plan
🤖 Generated with Claude Code