fix(auth): include PKCE code_challenge for MCP OAuth flows#4710
fix(auth): include PKCE code_challenge for MCP OAuth flows#4710pandego wants to merge 2 commits intogoogle:mainfrom
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the OAuth authorization flow to support PKCE (Proof Key for Code Exchange), addressing an issue where certain providers rejected initial authentication handshakes due to missing Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request aims to add PKCE support for OAuth flows. While the changes to the data model and the token exchange part are correct, there is a critical issue in the authorization URI generation. The implementation incorrectly passes the code_verifier instead of the required code_challenge. Additionally, the unit tests use a mock that masks this bug, preventing it from being caught. My review includes feedback on fixing the implementation and improving the test mock.
|
Thanks for the review, addressed in the latest push. What changed:
Validation run:
|
|
The best interest way |
dcccc90 to
f8514e9
Compare
|
Thanks for the update |
Summary
Fixes #4708.
This updates the OAuth authorization flow to include PKCE parameters when requested by MCP tool credentials, so providers that require
code_challengeno longer reject the initial auth handshake.What changed
code_challenge_methodcode_verifiercode_challenge_methodis set, ADK now ensures acode_verifierexists,create_authorization_url(...).code_verifiertofetch_token(...)for authorization-code exchange.code_verifierforwarded during token exchange.Testing plan
uv run pytest tests/unittests/auth/test_auth_handler.py tests/unittests/auth/exchanger/test_oauth2_credential_exchanger.pyBoth test files pass locally.
Checklist