定制 frostbit/twitch 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

frostbit/twitch

最新稳定版本:1.0.0

Composer 安装命令:

composer require frostbit/twitch

包简介

Twitch.tv API library developed by Frostbit.cz.

README 文档

README

Twitch.tv API Library developed by Frostbit.cz.

Latest Stable Version Build Status Scrutinizer Code Quality Total Downloads

Install

Put following line into your composer.json (require) and run composer update. Packagist!

"frostbit/twitch": "dev-master"

Settings

Update return URI, Scopes, client ID and client secret in OAuth & Twitch classes.

// Frostbit/Twitch/OAuth.php
const OAUTH_URL     = 'https://api.twitch.tv/kraken/oauth2/authorize';
const TOKEN_URL     = 'https://api.twitch.tv/kraken/oauth2/token';
const RESPONSE_TYPE = 'code';
const CLIENT_ID     = 'your_client_id';
const CLIENT_SECRET = 'your_secret';
const BACK_URL      = 'your_uri';
const SCOPE         = 'user_read';

// Frostbit/Twitch/Twitch.php
const API_URL   = 'https://api.twitch.tv/kraken';
const ACCEPT    = 'application/vnd.twitchtv.v3+json';
const CLIENT_ID = 'your_client_id';

Usage

use Frostbit\Twitch\Twitch;

$twitch = new Twitch;
$channel = $twitch->getChannel("swifty");
...

// OAuth for get Twitch OAuth URI with your params and get access token from received code.
use Frostbit\Twitch\OAuth;

$oAuth = new OAuth;
$redirectUri = $oAuth->getAuthenticateUri();

Support

List of supported functions.

  • Channel
  • Stream
  • Games
  • Chat
  • Emoticons
  • User
  • Autorized User (user_read scope)

统计信息

  • 总下载量: 102
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-2.0
  • 更新时间: 2015-02-02