Hi, I’m starting a new extension and have some questions.
For a personal project I am creating an extension because I would like some twitch interaction information.
I would like to create an panel extension that I will only running locally (in Dev Rig for example) for my channel only. i.e. personal use only, no published extension.
I want to be notified about subscribers to my channel or donations, then I can call a local server on my machine, then … whatever, automation, lights, robotics in my house etc.
I am hoping I can do this just with a client only solution and no EBS.
It seems so simple yet I can’t find any examples… so maybe it’s not possible?
Extension Panel requirements:
Connects to twitch
Listens to subscribers to my channel
Listens to dontations to my channel
Any information / examples / suggestions greatly received.
Yeah, setting up or finding a free (managed) secure server with SSL to host node.js is a whole extra effort, but would be the next direction to open up other possibilities.
I saw your NGINX advice, then I can run a home server, and connect with SSH. Still need to find a reliable free, managed NGINX server… I haven’t looked TBH.
No “live/real” server? You probably want the NGROK solution instead.
The Nginx solution involves SSH shenangians and NGROK will handle that for you instead.
So Method 1 on the linked post instead.
And I don’t think theres “managed nginx servers” out there for this use case. Since the nginx is usually used for hosting websites. rather than mucking about with reverse SSH tunnels.
Donations (you mean tips coz you are not a charity) are provided by a third party service so no they probably are not in chat, depends on the service you use.
No that would need eventsub which you can consume via ngrok,
could do that with subscriptions too since you have ngrok…
or keep polling the API
PRIVMSG parse for the bits tag
So, since you are an extension, and using ngrok, you could use eventsub for all the things and the server that servers your extension files can server EventSub webhooks.
So your NGROK server points to the Extension server and the Extension server can also act as your EBS.
So Lowest Common Denominator, if I want Follows, I need to use EventSub (which can also be used for Subscriptions too).
If I now decide to use ngrok (I have to for SSL), then I actually don’t need an extension at all, since it doesn’t provide all the events I need. The only thing I need is an EBS, either using my existing running server (node.js) (for personal project), or create a new dedicated server for EventSub.