Hi,
I am creating my own bot for the Czech and Slovak streamer community.
I'm solving the problem of sending messages to chat via API with "BOT mark"
Already have created regular account with bot name, created developer application and linked to my application and under dev app created "bot account"
And if i wanna send message as bot (used code from docs.kick.com)
const response = await fetch('https://api.kick.com/public/v1/chat', {
method: 'POST',
headers: {
"Authorization": "Bearer YOUR_OAUTH2_TOKEN",
"Content-Type": "application/json"
},
body: JSON.stringify({
"broadcaster_user_id": 123,
"content": "Pog",
"type": "bot"
})
});
const data = await response.json();
But the message send to bot account, but not to streamers chat.
Another bug/feature
- Create API/webhooks endpoints for Polls, predictions (creation, update, end, etc.)
- Subscriptions count (current getting from API only regularly paying subscriptions, but not gifted)
- API endpoints for create, edit, download clips, VOD
- Follow information from user to streamer.
- watching activity for some features like watch streak, watchtime, etc.
- Sub celebrations. We currently receive information at the time of payment, but not when the user hit celebration
Thanks.
Hi,
I am creating my own bot for the Czech and Slovak streamer community.
I'm solving the problem of sending messages to chat via API with "BOT mark"
Already have created regular account with bot name, created developer application and linked to my application and under dev app created "bot account"
And if i wanna send message as bot (used code from docs.kick.com)
But the message send to bot account, but not to streamers chat.
Another bug/feature
Thanks.