The Movie DB API Client for yii2
The Movie DB API Client for yii2, (*1)
Features
- Implements most of The Movie DB API methods
- Respect API limits, and wait if you are near to overpass API limit
- Simple usage
- Simple download of related images
- Log info messages using Yii::info for you to know when sleep due to API limits
Installation
The preferred way to install this extension is through composer., (*2)
Either run, (*3)
composer require --prefer-dist macklus/yii2-themdb "*"
or add, (*4)
"macklus/yii2-themdb": "*"
to the require section of your composer.json
file., (*5)
Usage
Once the extension is installed, simply use it in your code by :, (*6)
```php
use macklus\themdb\Tmdbapi;, (*7)
class SiteController extends Controller
{
public function actionTest()
{
$tmdb = new Tmdbapi();
$tmdb->api_key = 'INSERT_HERE_YOUR_API_KEY';
if ($tmdb->getTvSeason(46952, 3, ['language' => 'es'])) {
print_R($tmdb->data);
} else {
echo 'error';
}, (*8)
// Find something by his imdb_id
$tmdb->findByExternal('imdb_id', 'tt0816692', ['language' => 'es']);
}
}```, (*9)