From ecb8d09ad340d15434ba3ebcd0750886dc2a8c64 Mon Sep 17 00:00:00 2001 From: Muhammad Umair <104490047+MuhammadUmaair@users.noreply.github.com> Date: Wed, 15 May 2024 12:51:13 +0500 Subject: [PATCH] Update README.md zoom disable jwt token , so change this to Oauth --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c406b2..74a80e7 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,8 @@ return [ 'apiSecret' => env('ZOOM_CLIENT_SECRET'), 'baseUrl' => 'https://api.zoom.us/v2/', 'token_life' => 60 * 60 * 24 * 7, // In seconds, default 1 week - 'authentication_method' => 'jwt', // Only jwt compatible at present + //'authentication_method' => 'jwt', // Only jwt compatible at present + 'authentication_method' => 'Oauth', // Only Oauth compatible at present 'max_api_calls_per_request' => '5' // how many times can we hit the api to return results for an all() request ]; ```