think.studio/laravel-workcast
最新稳定版本:2.2.0
Composer 安装命令:
composer require think.studio/laravel-workcast
包简介
workcast api integration for laravel
README 文档
README
Api documentation you can find there
Installation
You can install the package via composer:
composer require think.studio/laravel-workcast
You can publish the config file with:
php artisan vendor:publish --provider="LaravelWorkcast\ServiceProvider" --tag="config"
Configuration in .env
WORKCAST_API_KEY='066t...L21135A='
Usage
Paginated request example for listings:
$pagination = Workcast::events()->list([ 'limit' => 50 ]); foreach ($pagination->items() as $item) { echo $item['eventPak']; } if ($pagination->hasNext()) { echo $pagination->nextLink(); // Workcast::events()->callPagination($pagination->nextLink()); }
Single entity request:
$item = Workcast::events()->get(22); dd($item->json());
By default in package specified this list of endpoints:
But you can also specify you own endpoint:
use LaravelWorkcast\Endpoints\AbstractEndpoint; use LaravelWorkcast\Endpoints\HasRestFullRead; use LaravelWorkcast\Endpoints\WithRestFullRead; class Presenters extends AbstractEndpoint implements HasRestFullRead { use WithRestFullRead; protected int $eventId; public function __construct(Auth $auth, int $eventId) { $this->eventId = $eventId; parent::__construct($auth); } public function baseUrl(): string { return "presenters/{$this->eventId}/sessions/" . $this->key(); } public function key(): string { return 'presenters'; } } $pagination = (new Presenters(Workcast::getAuth(), 33))->list([ 'limit' => 50 ]);
Credits
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-07-09