ESP32 HTTP.GET() возвращает -1 и -11

#c #http #wifi #esp32

#c #http #wifi #esp32

Вопрос:

Я работаю с ESP32, все работает нормально, но когда я хочу отправить сообщение или даже получить запрос, я получаю статус -1 или иногда 11.

Я пробовал такие вещи, как :

  • на другом сервере — http / https — GET / POST- не сработало, я потерпел крах здесь: (
 #ifdef ESP32
  #include <WiFi.h>
  #include <HTTPClient.h>
#else
  #include <ESP8266WiFi.h>
  #include <ESP8266HTTPClient.h>
  #include <WiFiClient.h>
#endif

#include <Wire.h>


// Replace with your network credentials
const char* ssid     = "XXXXX";
const char* password = "XXXXX";

void setup() {
 
  Serial.begin(115200);
  delay(4000);
  WiFi.begin(ssid, password);
 
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi..");
  }
 
  Serial.println("Connected to the WiFi network");
 
}
 
void loop() {
 
  if ((WiFi.status() == WL_CONNECTED)) { //Check the current connection status
 
    HTTPClient http;
 
    http.begin("http://jsonplaceholder.typicode.com/comments?id=10");
    //Specify the URL
    int httpCode = http.GET();                                        //Make the request
    if (httpCode > 0) { //Check for the returning code
 
        String payload = http.getString();
        Serial.println(httpCode);
        Serial.println(payload);
      }
 
    else {
      Serial.println("Error on HTTP request");
    }
 
    http.end(); //Free the resources
  }
 
  delay(10000);
 
}
  

Комментарии:

1. разве сайт не использует https?