The VideoTile SDK is a wrapper for the VideoTile API. 13 methods are included as a starting point, more methods may be included during the life-cycle of the SDK & API.
The SDK is provided as a starting point to get to grips with the API, a quick & easy solution that you can include in your code base, alternatively; you can use the API directly and reference the API.
Full documentation can be found here.
- PHP >= 7.2.5
- ext-json
- guzzlehttp/guzzle ^7.4
composer require zgetro/video-tile-sdk
<?php
require __DIR__ . '/vendor/autoload.php';
// Specify the VideoTile endpoint, your admin token & LMS vendor name.
$api = new VideoTileSdk\VideoTile('http://api.videotilehost.com/', 'admin_token', 'vendor_lms_name');
echo $api->generateLoginUrl('user_token');To run the full test suite:
composer test
See CHANGELOG.md for recent changes.
MIT