Skip to content

Bot message and some suggestions #402

Description

@Altimut

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions