2captcha-twitch
v0.0.8
Published
2captcha implementation for twitch
Downloads
25
Maintainers
Readme
2captcha Twitch
Log in and Sign up on Twitch using 2captcha API
Usage
Install
npm i 2captcha-twitch
Log in
const twitch = require('2captcha-twitch')
// Log In
twitch.login(
email,
username,
password,
apiKey,
debug
)
// Auth-token cookie value
.then((res) => console.log(res))
email
:string
twitch user e-mailusername
:string
twitch usernamepassword
:string
twitch passwordapikey
:string
is your 2captcha API keydebug
:(Optional) bool
debug mode
Sign up
const twitch = require('2captcha-twitch')
// Sign Up
twitch.signup(
apiKey,
debug
)
// Returns {email, username, password}
.then(res => console.log(res))
apikey
:string
is your 2captcha API keydebug
:(Optional) bool
debug mode