diff --git a/backend/open_webui/main.py b/backend/open_webui/main.py index c6930f9b99..f38bd47109 100644 --- a/backend/open_webui/main.py +++ b/backend/open_webui/main.py @@ -1977,8 +1977,8 @@ async def oauth_login(provider: str, request: Request): # - This is considered insecure in general, as OAuth providers do not always verify email addresses # 3. If there is no user, and ENABLE_OAUTH_SIGNUP is true, create a user # - Email addresses are considered unique, so we fail registration if the email address is already taken -@app.get("/oauth/{provider}/callback") # Legacy endpoint @app.get("/oauth/{provider}/login/callback") +@app.get("/oauth/{provider}/callback") # Legacy endpoint async def oauth_login_callback(provider: str, request: Request, response: Response): return await oauth_manager.handle_callback(request, provider, response)