Search found 1 match
- Wed May 16, 2018 3:26 pm
- Forum: ESP32 Arduino
- Topic: Problem connected to a server with authentication keyin arduino framework.
- Replies: 1
- Views: 3868
Problem connected to a server with authentication keyin arduino framework.
Hi, I am trying to connect to a web server using the code below: WiFiClient client; //Connect to the server if (!client.connect("http://[url]/test/test?api_key=[key]", clientPort)) { Serial.println("connection failed"); return; } Key is the authentication key of the server. I am getting "connection ...