From 973028f41e8fa05a637c3f6fe653dd3269477623 Mon Sep 17 00:00:00 2001 From: Patrick Hofman Date: Fri, 25 Sep 2020 12:15:54 +0200 Subject: [PATCH] Correct security definition to indicate the API requires OAuth2 authentication. --- openapi.v2.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/openapi.v2.json b/openapi.v2.json index 2078b85..bbbfdcb 100644 --- a/openapi.v2.json +++ b/openapi.v2.json @@ -11909,10 +11909,12 @@ }, "securityDefinitions": { "global": { - "type": "apiKey", - "name": "access_token", - "in": "query" - } + "type":"oauth2", + "tokenUrl":"https://zoom.us/oauth/token" + ,"authorizationUrl":"https://zoom.us/oauth/authorize" + ,"flow":"accessCode" + ,"scopes": null + } }, "security": [ {