This commit is contained in:
Jack Amadeo
2025-10-11 10:32:16 -04:00
committed by GitHub
parent c70f0231e6
commit 73f109237e
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ pub async fn oauth_flow(
let mut oauth_state = OAuthState::new(mcp_server_url, None).await?;
let redirect_uri = format!("http://localhost:{}/oauth_callback", used_addr.port());
oauth_state
.start_authorization(&[], redirect_uri.as_str())
.start_authorization(&[], redirect_uri.as_str(), Some("goose"))
.await?;
let authorization_url = oauth_state.get_authorization_url().await?;