Skip to content

Latest commit

 

History

History
61 lines (50 loc) · 1.67 KB

API.md

File metadata and controls

61 lines (50 loc) · 1.67 KB

API

Query the Twitch API, aka Kraken, in your application or your website. It supports AJAX requests but has its limitations.

IMPORTANT: Twitch is requiring the Client-ID header on all of your API requests to Kraken. Click here to read more.

AJAX

Using AJAX requests works fine with Twitch but, unlike Node or any other programming language, it has its limitations.

client.api(
  {
    url: 'https://api.twitch.tv/kraken?client_id=CLIENT_ID',
  },
  function(err, res, body) {
    console.log(body);
  },
);

Pro tips:

  • Set the Client-ID in the URL with client_id=1dac77895e8f56fa1a71e7c43ef09d87
  • Set the OAuth Token in the URL with oauth_token=3eb787117110834e079932bedfb8e6a7
  • Set the method in the URL with _method=put

Node

We support all of the options available from the request module. The response body is parsed as JSON.

client.api(
  {
    url: 'https://api.twitch.tv/kraken/',
    headers: {
      'Client-ID': '1dac77895e8f56fa1a71e7c43ef09d87',
    },
  },
  function(err, res, body) {
    console.log(body);
  },
);
client.api(
  {
    url: 'https://api.twitch.tv/kraken/user',
    method: 'GET',
    headers: {
      Accept: 'application/vnd.twitchtv.v3+json',
      Authorization: 'OAuth 3eb787117110834e079932bedfb8e6a7',
      'Client-ID': '1dac77895e8f56fa1a71e7c43ef09d87',
    },
  },
  function(err, res, body) {
    console.log(body);
  },
);