Search found 1 match

by trix37
Wed May 16, 2018 3:26 pm
Forum: ESP32 Arduino
Topic: Problem connected to a server with authentication keyin arduino framework.
Replies: 1
Views: 3385

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 ...