Skip to content

semihs/tvkur-api-php-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Tvkur Api Php SDK

Introduction

This module has been written for TVKUR API

Installation

For the installation uses composer composer. Add this project in your composer.json:

"require": {
    "noc-med/tvkur-api-php-client": "dev-master"
}

if you don't have the composer.phar (https://getcomposer.org/download/)

Requirements

Php 5.5 or Higher versions. Php curl extension is needed. zendframework/zend-http

Configuration

$configs = array (
    'tvkur' => array(
        'api_url' => 'https://api.tvkur.com',
        'authentication' => array(
            'oauth' => array(
                'grant_type' => 'client_credentials',
                'client_id' => '61414062410',
                'client_secret' => '18f98c0c61d091c985c1f4ebb5439158',
                // 'username' => '',
                // 'password' => '',
            )
        )
    )
)

Using

$tvkurApiClient = new TvkurApiClient\TvkurApiClient(
    array(
        'configs' => $configs
        'expire_in' => $expires_in, //optional
        'acces_token' => $access_token, //optional
        'token_type' => $token_type, //optional
        'scope' => , => $scope, //optional
        'api_path' => $api_path, //optional
    )
);
$response = $tvkurApiClient->video()->get($id, (array) $queryParams);

or

$tvkurApiClient = new TvkurApiClient\TvkurApiClient();
$tvkurApiClient->setConfigs($configs);
$response = $tvkurApiClient->video()->get($id, (array) $queryParams);

$response = $tvkurApiClient->video()->get(null, array('title' => 'test title'));
$response = $tvkurApiClient->video()->get(null, array('categoryId' => 4));
$response = $tvkurApiClient->video()->get(null, array('categoryName' => 'test category name'));
$response = $tvkurApiClient->stream()->get(null, array('title' => 'test title'));
$response = $tvkurApiClient->playout()->get(null, array('title' => 'test title'));

Response content

$response->getJsonResponse(); //salt json body
$response->getArrayResponse(); //salt array body

$response->getContent(); //array video or stream array content
$response->getLinks(); //array prev next self links
$response->getPageCount(); //integer total page count
$response->getPageSize(); //integer items count per page
$response->getTotalItems(); //integer total items count

About

Tvkur Api Php SDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages