1. Go to this page and download the library: Download quickhelper/quickzoom library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
quickhelper / quickzoom example snippets
use QuickZoom\Facades\QuickZoom;
// Create a meeting
$meeting = QuickZoom::createMeeting('me', [
'topic' => 'Team Meeting',
'start_time' => now()->addDay()->toIso8601String(),
'duration' => 60,
'agenda' => 'Quarterly planning session'
]);
// List meetings
$meetings = QuickZoom::listMeetings();
// Get meeting details
$meeting = QuickZoom::getMeeting($meetingId);
// End a meeting
QuickZoom::endMeeting($meetingId);
// In your EventServiceProvider
protected $listen = [
\QuickZoom\Events\ZoomMeetingStarted::class => [
\App\Listeners\HandleMeetingStarted::class,
],
\QuickZoom\Events\ZoomParticipantJoined::class => [
\App\Listeners\HandleParticipantJoined::class,
],
// Other events...
];