Skip to content

This package is a wrapper of LiveCodingTV API for PHP.

License

Notifications You must be signed in to change notification settings

LiveCodingTVOfficial/LiveCoding-API

 
 

Repository files navigation

LiveCoding-API

Latest Stable Version Latest Unstable Version License Total Downloads Travis-CI Code Climate

This package is a wrapper of LiveCodingTV API for PHP.

Usage

Pure PHP
use Kurt\LiveCoding\Client;
use Kurt\LiveCoding\LiveCoding;

$storagePath = __DIR__.'/storage/livecoding';

$liveCodingClient = new Client([
    'id' => 'CLIENT_ID', // required
    'secret' => 'CLIENT_SECRET', // required
    'redirectUrl' => 'http://localhost:8000/', // required

    /** 
     * All classes under Kurt\LiveCoding\Scopes namespace are accepted as a valid scope.
     * By default ReadScope will be instantiated.
     */
    'scope' => new Kurt\LiveCoding\Scopes\ReadScope, // optional

    /** 
     * All classes under Kurt\LiveCoding\Storages namespace are accepted as a valid scope.
     * In order to use FileStorage you have to specify a storage path.
     * By default SessionStorage will be instantiated.
     */
    'storage' => new Kurt\LiveCoding\Storages\FileStorage($storagePath), // optional
]);

$liveCoding = new LiveCoding($liveCodingClient);

if (!$liveCoding->isAuthorized()) {
    echo '<a href='.$liveCoding->getAuthLink().'>Connect My LiveCodingTV Account</a>';
} else {
    $results = $liveCoding->users('ozankurt');
}

Contribution Guidelines

Any kind of code improvement or additions are appreciated.

License

The LiveCoding-API is open-sourced software licensed under the MIT license.

Credits

This package was built on Wapaca's livecoding-auth. Special Thanks!

About

This package is a wrapper of LiveCodingTV API for PHP.

ttps://www.livecoding.tv/

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%