decrypted / twitch-sdk
TwitchTV API SDK for PHP
Requires
- php: >=5.3.0
- ext-curl: *
Requires (Dev)
- jakub-onderka/php-console-highlighter: ^0.3.2
- jakub-onderka/php-parallel-lint: ^0.9.2
- phpunit/phpunit: 4.3.*
- squizlabs/php_codesniffer: ^2.7
Replaces
- ritero/twitch-sdk: 2.*
README
This is unofficial TwitchTV SDK for PHP, a fork of https://github.com/jofner/Twitch-SDK as it got UNMAINTAINED. This will aim to do at least basic patches, and it is running in production. #therebedragons #v5
Requirements
TwitchTV SDK for PHP requires PHP 5.3.0 or later with cURL extension enabled.
Installation
The best way to install TwitchTV SDK is use Composer.
Download the bundle using Composer
$ composer require 'decrypted/twitch-sdk:2.1.*'
The downloaded package includes the src
directory. This directory contains
the source code of TwitchTV SDK for PHP. This is the only directory
that you will need in order to deploy your application.
Getting started
Basic functions starts with standard naming policy (user*, channel* etc.) -
userGet()
for example. Authenticated functions have auth* prefixes,
like authUserGet()
.
SDK initialization in your project
With autoloader (Frameworks etc.)
use \jofner\SDK\TwitchTV\TwitchSDK; $twitch = new TwitchSDK; ...
Without Autoloader
require '/path/to/libs/jofner/SDK/TwitchTV/TwitchSDK.php'; require '/path/to/libs/jofner/SDK/TwitchTV/TwitchSDKException.php'; use \jofner\SDK\TwitchTV\TwitchSDK; use \jofner\SDK\TwitchTV\TwitchSDKException; $twitch = new TwitchSDK; ...
Usage
Basic usage (public functions only)
$twitch = new TwitchSDK; $channel = $twitch->channelGet('channelname'); ...
Authenticated functions usage
$twitch_config = array( 'client_id' => 'your_twitch_app_client_id', 'client_secret' => 'your_twitch_app_client_secret', 'redirect_uri' => 'your_twitch_app_redirect_uri', ); $twitch = new TwitchSDK($twitch_config); $loginURL = $twitch->authLoginURL('user_read'); ...
More examples you can find soon at Wiki pages.
Error: curl SSL certificate problem: self signed certificate in certificate chain
If you getting this error, you have probably out of date CA root certificates. Be sure you have in your php.ini set path to certificate in curl.cainfo = "..."
You can get cacert.pem from this site https://curl.haxx.se/docs/caextract.html
Licenses
Refer to the LICENSE.md file for license information