kritzware / twitch-bot

🤖 Easily create chat bots for Twitch.tv
https://www.npmjs.com/package/twitch-bot
MIT License
149 stars 36 forks source link

Is it possible to know if a chatter is a follower? #41

Closed NoxPhoenix closed 5 years ago

NoxPhoenix commented 5 years ago

The payload that responds on chat messages has a property for subscribers, but what if you want to control what commands can only be used by followers?

kritzware commented 5 years ago

Unfortunately I don't think you can get this information via Twitch IRC. The best way for you to do this would be to query the Twitch API with the user id (provided in a chatter message) at this endpoint: https://dev.twitch.tv/docs/v5/reference/users/#check-user-follows-by-channel

I hope that helps!