[PR #17284] [MERGED] feat: add Feishu OAuth integration #63237

Closed
opened 2026-05-06 07:52:07 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/17284
Author: @xyb
Created: 9/9/2025
Status: Merged
Merged: 9/12/2025
Merged by: @tjbck

Base: devHead: feishucn


📝 Commits (1)

  • ee82439 feat: add Feishu OAuth integration

📊 Changes

4 files changed (+65 additions, -1 deletions)

View changed files

📝 backend/dev.sh (+1 -1)
📝 backend/open_webui/config.py (+52 -0)
📝 backend/open_webui/utils/oauth.py (+2 -0)
📝 src/routes/auth/+page.svelte (+10 -0)

📄 Description

fix discussions #10385, issue #10349.

Implement Feishu OAuth provider using standard client:

  • Set up Feishu-specific endpoints for authorization, token, and userinfo
  • Use user_id as sub claim for Feishu user identification
  • Extract correct user information from nested 'data' field in Feishu responses

Configuration requirements:

  • Set FEISHU_CLIENT_ID and FEISHU_CLIENT_SECRET environment variables to enable Feishu OAuth
  • Set ENABLE_OAUTH_SIGNUP=true to allow automatic user creation after OAuth login
  • Set DEFAULT_USER_ROLE=user to grant immediate access after OAuth registration
  • Set OAUTH_MERGE_ACCOUNTS_BY_EMAIL=true to enable merging of existing user accounts with matching emails

The Feishu integration uses custom OAuth flow with endpoints:

Pull Request Checklist

Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.

Before submitting, make sure you've checked the following:

  • Target branch: Please verify that the pull request targets the dev branch.
  • Description: Provide a concise description of the changes made in this pull request.
  • Changelog: Ensure a changelog entry following the format of Keep a Changelog is added at the bottom of the PR description.
  • Documentation: Have you updated relevant documentation Open WebUI Docs, or other documentation sources?
  • Dependencies: Are there any new dependencies? Have you updated the dependency versions in the documentation?
  • Testing: Have you written and run sufficient tests to validate the changes?
  • Code review: Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
  • Prefix: To clearly categorize this pull request, prefix the pull request title using one of the following:
    • BREAKING CHANGE: Significant changes that may affect compatibility
    • build: Changes that affect the build system or external dependencies
    • ci: Changes to our continuous integration processes or workflows
    • chore: Refactor, cleanup, or other non-functional code changes
    • docs: Documentation update or addition
    • feat: Introduces a new feature or enhancement to the codebase
    • fix: Bug fix or error correction
    • i18n: Internationalization or localization changes
    • perf: Performance improvement
    • refactor: Code restructuring for better maintainability, readability, or scalability
    • style: Changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc.)
    • test: Adding missing tests or correcting existing tests
    • WIP: Work in progress, a temporary label for incomplete or ongoing work

Changelog Entry

Description

  • Added Feishu OAuth integration to enable login via Feishu accounts

Added

  • Feishu OAuth2 provider implementation with custom authentication flow
  • New environment variables for Feishu configuration:
    • FEISHU_CLIENT_ID
    • FEISHU_CLIENT_SECRET
  • Feishu login button in authentication UI

Changed

  • None

Deprecated

  • None

Removed

  • None

Fixed

  • None

Security

  • None

Breaking Changes

  • None

Additional Information

  • None

Screenshots or Videos

Login Button
Screenshot 2025-09-12 at 13 06 38

Feishu Confirm Page
Screenshot 2025-09-09 at 15 08 45

User List
Screenshot 2025-09-09 at 15 13 17

Contributor License Agreement

By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/17284 **Author:** [@xyb](https://github.com/xyb) **Created:** 9/9/2025 **Status:** ✅ Merged **Merged:** 9/12/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `feishucn` --- ### 📝 Commits (1) - [`ee82439`](https://github.com/open-webui/open-webui/commit/ee82439e6773e4173b6a20dbd60436f1d62599e4) feat: add Feishu OAuth integration ### 📊 Changes **4 files changed** (+65 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `backend/dev.sh` (+1 -1) 📝 `backend/open_webui/config.py` (+52 -0) 📝 `backend/open_webui/utils/oauth.py` (+2 -0) 📝 `src/routes/auth/+page.svelte` (+10 -0) </details> ### 📄 Description fix discussions #10385, issue #10349. Implement Feishu OAuth provider using standard client: - Set up Feishu-specific endpoints for authorization, token, and userinfo - Use user_id as sub claim for Feishu user identification - Extract correct user information from nested 'data' field in Feishu responses Configuration requirements: - Set FEISHU_CLIENT_ID and FEISHU_CLIENT_SECRET environment variables to enable Feishu OAuth - Set ENABLE_OAUTH_SIGNUP=true to allow automatic user creation after OAuth login - Set DEFAULT_USER_ROLE=user to grant immediate access after OAuth registration - Set OAUTH_MERGE_ACCOUNTS_BY_EMAIL=true to enable merging of existing user accounts with matching emails The Feishu integration uses custom OAuth flow with endpoints: - Authorization: https://accounts.feishu.cn/open-apis/authen/v1/authorize - Token: https://open.feishu.cn/open-apis/authen/v2/oauth/token - User info: https://open.feishu.cn/open-apis/authen/v1/user_info # Pull Request Checklist ### Note to first-time contributors: Please open a discussion post in [Discussions](https://github.com/open-webui/open-webui/discussions) and describe your changes before submitting a pull request. **Before submitting, make sure you've checked the following:** - [x] **Target branch:** Please verify that the pull request targets the `dev` branch. - [x] **Description:** Provide a concise description of the changes made in this pull request. - [x] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description. - [x] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources? - [x] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation? - [ ] **Testing:** Have you written and run sufficient tests to validate the changes? - [x] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards? - [x] **Prefix:** To clearly categorize this pull request, prefix the pull request title using one of the following: - **BREAKING CHANGE**: Significant changes that may affect compatibility - **build**: Changes that affect the build system or external dependencies - **ci**: Changes to our continuous integration processes or workflows - **chore**: Refactor, cleanup, or other non-functional code changes - **docs**: Documentation update or addition - **feat**: Introduces a new feature or enhancement to the codebase - **fix**: Bug fix or error correction - **i18n**: Internationalization or localization changes - **perf**: Performance improvement - **refactor**: Code restructuring for better maintainability, readability, or scalability - **style**: Changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc.) - **test**: Adding missing tests or correcting existing tests - **WIP**: Work in progress, a temporary label for incomplete or ongoing work # Changelog Entry ### Description - Added Feishu OAuth integration to enable login via Feishu accounts ### Added - Feishu OAuth2 provider implementation with custom authentication flow - New environment variables for Feishu configuration: - `FEISHU_CLIENT_ID` - `FEISHU_CLIENT_SECRET` - Feishu login button in authentication UI ### Changed - None ### Deprecated - None ### Removed - None ### Fixed - None ### Security - None ### Breaking Changes - None --- ### Additional Information - None ### Screenshots or Videos Login Button <img width="542" height="369" alt="Screenshot 2025-09-12 at 13 06 38" src="https://github.com/user-attachments/assets/34149093-c470-46ec-92a7-d6af775b4012" /> Feishu Confirm Page <img width="613" height="580" alt="Screenshot 2025-09-09 at 15 08 45" src="https://github.com/user-attachments/assets/45d3b32b-faaa-4dcc-bd5c-9af50f961a52" /> User List <img width="943" height="53" alt="Screenshot 2025-09-09 at 15 13 17" src="https://github.com/user-attachments/assets/bd22444a-800a-488d-86a6-79e5e4267a5c" /> ### Contributor License Agreement By submitting this pull request, I confirm that I have read and fully agree to the [Contributor License Agreement (CLA)](/CONTRIBUTOR_LICENSE_AGREEMENT), and I am providing my contributions under its terms. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-06 07:52:07 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#63237