I'm building a Clojure app that needs to interface with Slack's real time API, and that requires a connection to a Websocket.
I am aware this is possible with gniazdo, but this pulls in Jetty, and I believe that Immutant has its own Websocket abstraction.
I've also tried using clj-http
, but it does not recognise the wss://
protocol, which is the URL returned from the Slack API.
Would greatly appreciate it if I were pointed in the right direction. Thanks!