We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to connect to a socket (ssl)
defmodule WebSocketExample do use WebSockex def start_link(url, state) do WebSockex.start_link(url, __MODULE__, state) end def handle_frame({type, msg}, state) do IO.puts("Received Message - Type: #{inspect(type)} -- Message: #{inspect(msg)}") {:ok, state} end def handle_cast({:send, {type, msg} = frame}, state) do IO.puts("Sending #{type} frame with payload: #{msg}") {:reply, frame, state} end end
WebSocketExample.start_link "wss://stream-api.betfair.com", :state
But it returns {:error, %WebSockex.ConnError{original: :closed}}
{:error, %WebSockex.ConnError{original: :closed}}
What is wrong with my code?
The text was updated successfully, but these errors were encountered:
That's usually an SSL error of some sort.
I haven't had time to give this library the attention it deserves, but I'll see if I can make SSL easier to use.
Sorry, something went wrong.
No branches or pull requests
I'm trying to connect to a socket (ssl)
But it returns
{:error, %WebSockex.ConnError{original: :closed}}
What is wrong with my code?
The text was updated successfully, but these errors were encountered: