ESP8266 Проблема с уведомлением Gmail
Я новичок в ESP8266 и следую приведенному ниже руководству. Из этого я пытаюсь получить количество непрочитанных писем от Google. Мой код выглядит так
#include <WiFiClientSecure.h> // Include the HTTPS library
#include <ESP8266WiFi.h> // Include the Wi-Fi library
const char* host = "mail.google.com";
const char* url = "/mail/feed/atom";
const int httpsPort = 443;
const char* ssid = "BSNL";
const char* password = "PASSWORD123";
void setup() {
Serial.begin(115200);
delay(10);
WiFi.begin(ssid, password); // Connect to the network
Serial.print("Connecting to ");
Serial.print(ssid); Serial.println(" ...");
int i = 0;
while (WiFi.status() != WL_CONNECTED) { // Wait for the Wi-Fi to connect
delay(1000);
Serial.print(++i); Serial.print(' ');
}
Serial.println('\n');
Serial.println("Connection established!");
Serial.print("IP address:\t");
Serial.println(WiFi.localIP());
}
void loop(){
int unread = getUnread();
Serial.print(unread);
}
int getUnread() {
WiFiClientSecure client; //connection
Serial.printf("Connecting to %s:%d ... \r\n", host, httpsPort);
if (!client.connect(host, httpsPort)) { // Connect to the Gmail server, on port 443
Serial.println("Connection failed"); // If the connection fails, stop and return
return -1;
}
}
Не выполнил функцию getUnread()
. Но на данный момент всегда показывает "сбой подключения" и возвращает -1.
Оборудование: NodeMCU Amica (имеет модуль Wi-Fi ESP8266)
IDE: последняя версия Arduino
Следующее руководство: https://tttapa.github.io/ESP8266/Chap17%20-%20Email%20Notifier.html
Есть идеи решить эту проблему? TIA
Обновление: проблема решена путем добавления client.setInsecure()
в setup()