定制 steadfastcollective/laravel-dailyco 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

steadfastcollective/laravel-dailyco

最新稳定版本:v1.2.0

Composer 安装命令:

composer require steadfastcollective/laravel-dailyco

包简介

Laravel SDK for Daily.co's REST API

README 文档

README

Total Downloads Latest Stable Version License

This package is an unofficial SDK for Daily.co's REST API.

Installation

  1. Install with Composer composer require steadfastcollective/laravel-dailyco
  2. Publish configuration file with php artisan vendor:publish
  3. Add your Daily API key to your .env
DAILY_API_KEY=
  1. You should now be able to perform API requests using the SDK! Follow the usage guide.

Usage

To make API requests with this package, you can either use the Facade, which we would recommend, or you could just manually new up the SteadfastCollective\LaravelDailyco\Daily class and call the methods from there.

All of our below examples use the Facade.

Rooms

Get rooms

use SteadfastCollective\LaravelDailyco\DailyFacade;

$rooms = DailyFacade::rooms();

Create room

use SteadfastCollective\LaravelDailyco\DailyFacade;

$room = DailyFacade::createRoom([...]);

Get room

use SteadfastCollective\LaravelDailyco\DailyFacade;

$room = DailyFacade::room('roomId', [...]);

Update room

use SteadfastCollective\LaravelDailyco\DailyFacade;

$room = DailyFacade::updateRoom('roomId', [...]);

Delete room room

use SteadfastCollective\LaravelDailyco\DailyFacade;

DailyFacade::deleteRoom('roomId', [...]);

Meeting tokens

Create meeting token

use SteadfastCollective\LaravelDailyco\DailyFacade;

$token = DailyFacade::createMeetingToken([...]);

Get meeting token

use SteadfastCollective\LaravelDailyco\DailyFacade;

$token = DailyFacade::meetingToken('meetingToken', [...]);

Recordings

Get recordings

use SteadfastCollective\LaravelDailyco\DailyFacade;

$recordings = DailyFacade::recordings([...]);

Get a recording

use SteadfastCollective\LaravelDailyco\DailyFacade;

$recording = DailyFacade::recording('recordingId', [...]);

Delete a recording

use SteadfastCollective\LaravelDailyco\DailyFacade;

$recording = DailyFacade::deleteRecording('recordingId', [...]);

Get recording access link

use SteadfastCollective\LaravelDailyco\DailyFacade;

$accessLink = DailyFacade::recordingAccessLink('recordingId', [...]);

Get recording download link

use SteadfastCollective\LaravelDailyco\DailyFacade;

$downloadLink = DailyFacade::recordingDownload('recordingId', [...]);

Create recording composite recipe

use SteadfastCollective\LaravelDailyco\DailyFacade;

$recipe = DailyFacade::createRecordingCompositesReceipe('recordingId', [...]);

Get recording composites

use SteadfastCollective\LaravelDailyco\DailyFacade;

$composites = DailyFacade::recordingComposites('recordingId', [...]);

Logs

Get logs

use SteadfastCollective\LaravelDailyco\DailyFacade;

$logs = DailyFacade::logs();

Meeting Analytics

Retrieve meeting analytics

use SteadfastCollective\LaravelDailyco\DailyFacade;

$analytics = DailyFacade::meetingAnalytics();

Presence

Active participants

use SteadfastCollective\LaravelDailyco\DailyFacade;

$participants = DailyFacade::presence();

Handling errors

This package will throw an exception whenever a non 200 response is returned from Daily's API. The full list of exceptions is provided below.

Status Code Exception
400 (Bad Request) SteadfastCollective\LaravelDailyco\Exceptions\BadRequestException
401 (Unauthorized) SteadfastCollective\LaravelDailyco\Exceptions\UnauthorizedException
404 (Not Found) SteadfastCollective\LaravelDailyco\Exceptions\NotFoundException
429 (Too Many Requests) SteadfastCollective\LaravelDailyco\Exceptions\TooManyRequestsException
5xx (Server Errors) SteadfastCollective\LaravelDailyco\Exceptions\ServerErrorException

Security

If you find any security vulnerabilities in this package, please directly email dev@steadfastcollective.com, rather than using the issue tracker.

统计信息

  • 总下载量: 497
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 4
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 1
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2021-06-30