I want to restrict access to my QIE channels so that only authenticated users can utitlize them. Specifically, I'm using HTTP Listeners and Secure Sockets as the entry points to my channels. Is there existing functionality I can configure in QIE, if not, what's the best course of action?
Currently, I was considering adding HTTP Basic Auth for my HTTP Listeners to decode the token in a Mapping node and do a lookup for the user in a System Variable table. Although, I don't see a way to hash password data for my user in that table. So this approach might not be feasible.
And then I'm not sure how I can go about adding authentication to Secure Sockets.
Any advice is appreciated.