arduinoWebSockets
arduinoWebSockets copied to clipboard
[WiFiGeneric.cpp:1578] hostByName(): DNS Failed for websocket
The method I call to initiate connection -
void initWebSocketConnection(){
wsClient.begin(WS_HOST, WS_PORT, WS_URL, "wss");
wsClient.onEvent(onWSEvent);
}
The host, port, URL -
#define WS_HOST "websocket_domain_name.com"
#define WS_PORT 443
#define WS_URL "/dev"
The error I get - [WiFiGeneric.cpp:1578] hostByName(): DNS Failed for {aws websocket}
Have the same issue here, only for Deno Deploy. Did you manage to resolve it?