Bug: add resource parameter to MCP OAuth Flow (#4981)

Co-authored-by: Your Name <you@example.com>
This commit is contained in:
Brian Ray
2025-07-27 14:09:45 -04:00
committed by GitHub
parent 576cebc928
commit c45c14ee0e
3 changed files with 49 additions and 10 deletions

View File

@@ -151,6 +151,7 @@ describe('MCPOAuthProvider', () => {
expect.objectContaining({ accessToken: 'access_token_123' }),
'test-client-id',
'https://auth.example.com/token',
undefined,
);
});
@@ -551,6 +552,7 @@ describe('MCPOAuthProvider', () => {
expect.objectContaining({ accessToken: 'new_access_token' }),
'test-client-id',
'https://auth.example.com/token',
undefined,
);
});