From f4ebab5a9ddcfaf94e212408ad5417141a3bbaa4 Mon Sep 17 00:00:00 2001 From: Anthony Lukach Date: Tue, 17 Jun 2025 11:23:04 -0700 Subject: [PATCH] fix: add flow name (authorizationCode) for OAuth2 example --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 96dd8c1..745fc69 100644 --- a/README.md +++ b/README.md @@ -129,9 +129,11 @@ Definition for a request parameter. "type": "oauth2", "description": "requires a login and user token", "flows": { - "authorizationUrl": "https://example.com/oauth/authorize", - "tokenUrl": "https://example.com/oauth/token", - "scopes": {} + "authorizationCode": { + "authorizationUrl": "https://example.com/oauth/authorize", + "tokenUrl": "https://example.com/oauth/token", + "scopes": {} + } } } }