Skip to content

BOT-K4CP3R/kick-chatbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Get token

To get the token, you need to send a message in the chat and intercept the query to the API in the "NETWORK" tab and then copy the "authorization" header from it.

Get cookies

To obtain cookies for the config, you need to log in to the bot account and paste this script into the console and then paste the return message into the config.

  const cookieString = document.cookie;

  const cookies = cookieString.split('; ');

  const cookieObject = cookies.reduce((acc, cookie) => {
    const [name, value] = cookie.split('=');
    acc[name] = value;
    return acc;
  }, {});

  const formattedCookies = Object.entries(cookieObject).map(([name, value]) => `${name}=${value}`).join('; ');

  return formattedCookies;
}

console.log(getFormattedCookies())
This is not an official form of creating bots on the kick.com platform!

Releases

No releases published

Packages

No packages published