2017-02-07 13:11:42 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2017-02-07 13:11:42 -05:00
|
|
|
*
|
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* PHP version 7
|
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
2017-02-07 13:11:42 -05:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2017 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 4.0
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-02-07 13:11:42 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Kitsu;
|
|
|
|
|
2017-12-08 22:32:00 -05:00
|
|
|
use Aviat\AnimeClient\API\APIRequestBuilder;
|
2017-02-07 13:11:42 -05:00
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
class KitsuRequestBuilder extends APIRequestBuilder {
|
|
|
|
|
2017-02-07 13:11:42 -05:00
|
|
|
/**
|
|
|
|
* The base url for api requests
|
|
|
|
* @var string $base_url
|
|
|
|
*/
|
2017-12-08 22:32:00 -05:00
|
|
|
protected $baseUrl = 'https://kitsu.io/api/edge/';
|
2017-02-07 13:11:42 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HTTP headers to send with every request
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $defaultHeaders = [
|
|
|
|
'User-Agent' => "Tim's Anime Client/4.0",
|
2017-12-08 22:32:00 -05:00
|
|
|
'Accept' => 'application/vnd.api+json',
|
2017-02-07 13:11:42 -05:00
|
|
|
'Content-Type' => 'application/vnd.api+json',
|
2017-12-08 22:32:00 -05:00
|
|
|
'CLIENT_ID' => 'dd031b32d2f56c990b1425efe6c42ad847e7fe3ab46bf1299f05ecd856bdb7dd',
|
|
|
|
'CLIENT_SECRET' => '54d7307928f63414defd96399fc31ba847961ceaecef3a5fd93144e960c0e151',
|
2017-02-07 13:11:42 -05:00
|
|
|
];
|
2017-02-08 15:48:20 -05:00
|
|
|
}
|