PHP code example of peranetwork / viewstats-api
1. Go to this page and download the library: Download peranetwork/viewstats-api library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
peranetwork / viewstats-api example snippets
use ViewStatsWrapper\ViewStatsAPI;
$apiToken = '32ev9m0qggn227ng1rgpbv5j8qllas8uleujji3499g9had6oj7f0ltnvrgi00cq';
$api = new ViewStatsAPI($apiToken);
try {
$popularChannels = $api->get('/channels/popular', ['total' => 1]);
print_r($popularChannels);
} catch (\ViewStatsWrapper\Exceptions\APIException $e) {
echo "API Error: " . $e->getMessage();
} catch (\ViewStatsWrapper\Exceptions\DecryptionException $e) {
echo "Decryption Error: " . $e->getMessage();
}
$params = ['param1' => 'value1', 'param2' => 'value2'];
$response = $api->get('/endpoint', $params);
$data = ['key1' => 'value1', 'key2' => 'value2'];
$response = $api->post('/endpoint', $data);
$api->get('/channels/@delba');
$api->get('/channels/@delba/aboutMe');
$api->get('/channels/@delba/stats', [
'range' => '28',
'groupBy' => 'daily',
'sortOrder' => 'ASC',
'withRevenue' => 'true',
'withEvents' => 'true',
'withBreakdown' => 'false',
'withToday' => 'false'
]);
$api->get('/channels/@delba/stats', [
'range' => 'alltime',
'groupBy' => 'daily',
'sortOrder' => 'ASC',
'withRevenue' => 'true',
'withEvents' => 'false',
'withBreakdown' => 'false'
]);
$api->get('/channels/@delba/stats', [
'range' => '365',
'groupBy' => 'monthly',
'sortOrder' => 'ASC',
'withRevenue' => 'true',
'withEvents' => 'true',
'withBreakdown' => 'false',
'withToday' => 'false'
]);
$api->get('/channels/@delba/longsAndShorts');
$api->get('/channels/@delba/featuredVideo');
$api->get('/channels/@delba/averages');
$api->get('/channels/@delba/videos', [
'orderBy' => 'uploadDate',
'limit' => '40',
'offset' => '0',
'withThumbnail' => 'true',
'type' => 'lf'
]);
$api->get('/channels/@delba/projections/milestones');
$api->get('/channels/@delba/similar');
$api->get('/channels/popular', ['total' => '6']);
$api->post('/rankings/channels', [
'interval' => 'weekly',
'sortBy' => 'subs',
'made_for_kids' => true,
'show_music' => true,
'category_id' => null,
'country' => null,
'show_movies' => true
]);
$api->post('/rankings/videos', [
'interval' => 7,
'ategoryId' => 9999,
'videoFormat' => 'all'
]);