PHPackages                             krayin/krayin-zoom-integration - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. krayin/krayin-zoom-integration

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

krayin/krayin-zoom-integration
==============================

Krayin Zoom Integration

v2.0.1(1y ago)6879MITBlade

Since Sep 27Pushed 1y agoCompare

[ Source](https://github.com/krayin/krayin-zoom-integration)[ Packagist](https://packagist.org/packages/krayin/krayin-zoom-integration)[ RSS](/packages/krayin-krayin-zoom-integration/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (3)DependenciesVersions (4)Used By (0)

### 1. Introduction:

[](#1-introduction)

Krayin Zoom Integration.

It packs in lots of demanding features that allows your business to scale in no time:

- Admin user can connect to their zoom account.
- User can create zoom meeting link directly from activity form

### 2. Requirements:

[](#2-requirements)

- **Krayin**: v2.0.0 or higher.

### 3. Installation:

[](#3-installation)

- Go to the root folder of **Krayin** and run the following command

```
composer require krayin/krayin-zoom-integration
```

- Run these commands below to complete the setup

```
php artisan migrate

```

```
php artisan route:cache

```

```
php artisan vendor:publish --force

-> Search for **ZoomMeetingServiceProvider** and then press enter to publish all assets and configurations.

```

### 4. Configuration:

[](#4-configuration)

- Goto **.env** file and add following lines

Please make sure you have to add these scopes into your zoom app:

- **user:read:user:admin**
- **user:read:user**

```
ZOOM_CLIENT_ID=
ZOOM_CLIENT_SECRET=
ZOOM_REDIRECT_URI="${APP_URL}/admin/zoom/oauth"
```

- Goto **config/services.php** file and add following lines

```
return [
    // ...

    'zoom' => [
        // Our Zoom API credentials.
        'client_id'     => env('ZOOM_CLIENT_ID'),
        'client_secret' => env('ZOOM_CLIENT_SECRET'),

        // The URL to redirect to after the OAuth process.
        'redirect_uri'  => env('ZOOM_REDIRECT_URI'),
    ],
];
```

- Goto **config/krayin-vite.php** file and add following lines.

```
