Ahmed Agabani
Ahmed Agabani
My experience, the failure: ``` {"reason":"build-finished","success":true} Finished dev [unoptimized + debuginfo] target(s) in 1m 12s Clippy results: 0 ICE, 0 errors, 0 warnings, 0 notes, 0 help Error: Resource not...
> The default port should be 443 instead of 80 in HTTPS. Thank you for your contribution. I'd like to verify the change before accepting the pull request. Could you...
https://github.com/google-gemini/gemini-cli/pull/12520 does not take into consideration `~/.gemini/setting.json:.mcpServers..oauth.redirectUri`'s port number when creating the oauth callback server doc sample https://github.com/google-gemini/gemini-cli/blob/v0.19.1/docs/tools/mcp-server.md#oauth-configuration-properties: ```json { "mcpServers": { "": { "oauth": { "enabled": "true", "redirectUri": "http://localhost:7777/oauth/callback",...
Here's a sample fix that resolves the issue. ```diff diff --git a/packages/core/src/mcp/oauth-provider.ts b/packages/core/src/mcp/oauth-provider.ts index 06f5a95cf..069eac546 100644 --- a/packages/core/src/mcp/oauth-provider.ts +++ b/packages/core/src/mcp/oauth-provider.ts @@ -264,9 +264,13 @@ export class MCPOAuthProvider { * The...