Gil Maimon
Gil Maimon
No response, no issue 👍
Great, I'll re-open. You should not call `connect` multiple times on the same object. You should reset the object or do something like: ```c++ while(true) { WebsocketsClient temp; if (temp.connect(....))...
Hi @friedemannm , is it possible that you get timeouts after long durations of inactivity? I know many server implementations are disconnecting clients after some time of inactivity, one way...
Weird.. Can you share more of the connection code? Also you can try to turn on more verbose board logs
Sorry for the delay. Looks like you are requesting to `/api` in your curl script but to `/` in your arduino code...
The post is a bit confusing, but please make sure you consult the wiki entries on [sending messages](https://github.com/gilmaimon/TinyWebsockets/wiki/Client#Sending-Messages) If you want to send binary data, you have 2 main options:...
> Thank you for a link to resource. I should have read it in first place. Now in my case argv[i] is array of strings so how should I send...
So, the library does not support those platforms currently. You can, however implement your own tcp handlers for your platform. See this PR for example, which did it for the...
Hi! I'm not actually sure, this might be a bug if you say it worked with earlier version of the esp libraries. Just to make sure I understand you, what...
Hi @doublep21, thanks for opening this issue and including your code. I suspect that the issue with your code is this commented line: ```cpp // client.setCACert(ssl_ca_cert); ``` You must provide...