Currently only supports OAuth Authorization Code Flow
const getTwitchSession = require("./index");
const twitchSession = await getTwitchSession({
clientId: "...",
clientSecret: "...",
redirectUri: "http://localhost",
});
- On initial call will help obtain
accessToken
andrefreshToken
s by providing a link to gain authorization code and wait for user input.- This can be skipped by building your own
twitch-session.json
with twitchtokengenerator.com
- This can be skipped by building your own
- When called it will check and automatically refresh a token based on expiration time.
{
"clientId": "...",
"accessToken": "...",
"refreshToken": "...",
"expires": "2020-05-11T01:00:00.000Z"
}
getTwitchSession(settings, forceRefresh)
parameter | key | description |
---|---|---|
settings | clientId | Twitch App Client ID |
settings | clientSecret | Twitch App Secret |
settings | redirectUri | (Optional) Where initial authorization request should redirect too |
settings | scope | (Optional) space-separated list of scopes |
forceRefresh | (Optional) Forces the accessToken to be refreshed |