{"id":19273124,"url":"https://github.com/remonhasan/zoom-lumen-api","last_synced_at":"2025-10-22T10:52:57.945Z","repository":{"id":105050887,"uuid":"539289142","full_name":"Remonhasan/zoom-lumen-api","owner":"Remonhasan","description":"Zoom meeting for webinar events with lumen  🎦","archived":false,"fork":false,"pushed_at":"2023-11-28T11:50:05.000Z","size":50,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-05T13:44:00.143Z","etag":null,"topics":["lumen-micro-framework","microservice","zoom-api"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Remonhasan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-21T03:33:00.000Z","updated_at":"2024-05-20T12:18:22.000Z","dependencies_parsed_at":"2023-11-28T12:48:39.728Z","dependency_job_id":null,"html_url":"https://github.com/Remonhasan/zoom-lumen-api","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Remonhasan%2Fzoom-lumen-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Remonhasan%2Fzoom-lumen-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Remonhasan%2Fzoom-lumen-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Remonhasan%2Fzoom-lumen-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Remonhasan","download_url":"https://codeload.github.com/Remonhasan/zoom-lumen-api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240378882,"owners_count":19792039,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["lumen-micro-framework","microservice","zoom-api"],"created_at":"2024-11-09T20:41:03.870Z","updated_at":"2025-10-22T10:52:52.884Z","avatar_url":"https://github.com/Remonhasan.png","language":"PHP","readme":"# Zoom Lumen Api\nThis repository belongs to with an implementation of `Zoom api` where the lumen framework is used independently. Besides a initial package is used for general settings.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require macsidigital/laravel-zoom\n```\n\nFor versioning:-\n\n- 1.0 - deprecated - was a quick build for a client project, not recommended you use this version.\n\n- 2.0 - Laravel 5.5 - 5.8 - deprecated, no longer maintained\n\n- 3.0 - Laravel 6.0 - Maintained, feel free to create pull requests.  This is open source which is a 2 way street.\n\n- 4.0 - Laravel 7.0 - 8.0 - Maintained, feel free to create pull requests.  This is open source which is a 2 way street.\n\n### Configuration file\n\nPublish the configuration file\n\n```bash\nphp artisan vendor:publish --provider=\"MacsiDigital\\Zoom\\Providers\\ZoomServiceProvider\"\n```\n\nThis will create a zoom.php config file within your config directory:-\n\n```php\nreturn [\n    'apiKey' =\u003e env('ZOOM_CLIENT_KEY'),\n    'apiSecret' =\u003e env('ZOOM_CLIENT_SECRET'),\n    'baseUrl' =\u003e 'https://api.zoom.us/v2/',\n    'token_life' =\u003e 60 * 60 * 24 * 7, // In seconds, default 1 week\n    'authentication_method' =\u003e 'jwt', // Only jwt compatible at present\n    'max_api_calls_per_request' =\u003e '5' // how many times can we hit the api to return results for an all() request\n];\n```\n\nYou need to add ZOOM_CLIENT_KEY and ZOOM_CLIENT_SECRET into your .env file.\n\nAlso note the tokenLife, there were numerous users of the old API who said the token expired to quickly, so we have set for a longer lifeTime by default and more importantly made it customisable.\n\nThat should be it.\n\n### Connecting\n\nTo get an access point you can simply create a new instance and the resource.\n\n``` php\n    $user = Zoom::user();\n```\n\n### Accessing models\n\nThere are 2 main ways to work with models, to call them directly from the access entry point via a facade, or to call them in the standard php 'new' method and pass in the access entry point\n\n``` php\n    $user = Zoom::user();\n    //or\n    \n    $zoom = new \\MacsiDigital\\Zoom\\Support\\Entry;\n    $user = new \\MacsiDigital\\Zoom\\User($zoom);\n```\n\n### Custom settings\nIf you would like to use different configuration values than those in your zoom.php config file, you can feed those as parameters to \\MacsiDigital\\Zoom\\Support\\Entry as shown below.\n``` php\n    $zoom = new \\MacsiDigital\\Zoom\\Support\\Entry($apiKey, $apiSecret, $tokenLife, $maxQueries, $baseUrl);\n```\n\n### General Implementation Workflow\n\nThe zoom meetings are created by maintaining different zoom account of different organization. Therefore, a live meeting account table set up is created where the \n`api_key` and `secret_key` is added initially. After that, the account credientials are fetched and the implementation has been done in `controllers/WebinarEventController` mentioning the `store` , `update` and `delete`.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremonhasan%2Fzoom-lumen-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremonhasan%2Fzoom-lumen-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremonhasan%2Fzoom-lumen-api/lists"}