1.0.1 • Published 5 years ago

ebsidian v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Twitch EBS

An easy-to-use library for your Twitch Extension EBS.

How to Use

Ebsidian.retrieveSecret

Ebsidian.extension.id = "1234567890"
Ebsidian.extension.secret = // do not commit your secret to your codebase!
Ebsidian.extension.version = "0.0.1"
let channelId = "000000000"
await Ebsidian.sendChatMessage(channelId, "Hello World!")
Ebsidian.extension.id = "1234567890"
const channels = await Ebsidian.retrieveLiveChannels()
Ebsidian.extension.id = "1234567890"
Ebsidian.extension.secret = // do not commit your secret to your codebase!
let channelId = "000000000"
await Ebsidian.broadcastPubsubMessage(channelId, {"text": "Hello World!!"})