[UNSTABLE] Twitch Interface V2
NOTES
The updates for a little while are going to slow down, as I'm in the middle of now writing the authentication layer for calls. I expect the next update may take a month or more depending on how much I feel like working on the project and how much time I can honestly dedicate to it. Once the authentication layer is completed, the remaining endpoints will be completed in a similar manner to the currently completed modules.
[PHP] Twitch Interface
This is a universal PHP interface designed specifically to connect to and interact with the twitch.tv Kraken API servers. It was designed with the intention of being very controlled, safe and light for both the user server and the Kraken API servers. Almost, if not all capable calls are coded directly into the interface, allowing the interface to perform almost, if not all functions that the API allows. Any functions that you believe need to be added or improved can be done via a pull request or opening up an issue.
Currently this interface supports all V5 API calls.
Disclaimer
I am in no way, shape or form associated with, in contract with or partnered with Twitch. This interface is not officially sponsored, endorsed or supported by Twitch. For support on this interface, you may open an issue. Please DO NOT post for help on the developer forums. That is not the place to get library specific help. If you require help in understanding the API, the purpose of endpoints, or help in general with figuring out the workflow for your application, please go to the support forums for those kinds of queries. (No, no one at Twitch asked me to do this...but I saw a few posts asking specifically about my code and that is not the place to get help with the library, here is)
License (TL`DR version)
You can do whatever you want with this piece of software, including modifying it and using it in any way, shape or form. The only requirement is that you keep the credit and the license in the header of the file itself and that you not, in any circumstances redistribute the file in question for the safety of any people who wish to use this software. If you wish to have other people use this software, it is best that you give them the link to this particular git for the latest version of this software and to allow them to find all of the information relating to this piece of software.
For any information about the interface, please look in the module list below.
Advantages
- Covers all endpoints for the Kraken V5 API, using a nearly identical structure to Twitch's own documentation.
- Smart memory management when making calls
- Exception-based error handling for consistent and clean results in production environments
- Built-in iterator for making calls over large datasets
- Built-in authorization validation
Installation
You may either download the library, or use Composer. Composer is the preferred method of installation for current and dev versions of the library.
Composer
If you do not already have Composer installed, please install composer using the instructions for your platform: (Linux/MacOS | Windows).
Once composer is installed, you can install the following package using whatever your composer implementation demands.
iburn36360/twitch-interface
If you are using composer from the command line, go to your sources directory and run the following command (Replace composer.phar with the real location of your composer PHPArchive and be sure PHP is an environment variable for your system. If you run into errors...these are your issues to google about)
php composer.phar require iburn36360/twitch-interface
Once the package is installed, be sure to include the autoloader from composer into your runtime in your scripts like shown below (Directory location may vary).
<?php
require_once(__DIR__ . '/vendor/autoloader.php');
// Though optional, makes the code cleaner. I suggest the use statement where it makes sense
use \IBurn36360\TwitchInterface\Modules\Search;
use \IBurn36360\TwitchInterface\Configuration;
$minecraftStreams = Search::streams(new Configuration([
'clientID' => 'Your Twitch Client ID',
]), [
'query' => 'minecraft'
])