Skip to content

Commit

Permalink
Merge pull request #141 from DevMahmoudMustafa/patch-2
Browse files Browse the repository at this point in the history
Oauth support instead of jwt of file config.php
  • Loading branch information
colinhall17 authored Aug 24, 2023
2 parents d70be38 + 72a504e commit d579e6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/config.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

return [
'api_key' => env('ZOOM_CLIENT_KEY'),
'api_secret' => env('ZOOM_CLIENT_SECRET'),
'account_id' => env('ZOOM_ACCOUNT_ID'),
'client_id' => env('ZOOM_CLIENT_ID'),
'client_secret' => env('ZOOM_CLIENT_SECRET'),
'base_url' => 'https://api.zoom.us/v2/',
'token_life' => 60 * 60 * 24 * 7, // In seconds, default 1 week
'authentication_method' => 'jwt', // Only jwt compatible at present but will add OAuth2
'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
];

0 comments on commit d579e6b

Please sign in to comment.