HTTPClient Port (#347)
* Fix possible infinite loop in the example * Remove workaround of sockets always return -76 Remove workaround of sockets always return -76 (because it's fixed on IDF now) Remove delay during handshake (improving stability) * Remove unusable mbedtls_net of context creation * Fix bad destructor * Compatibility with WiFiClient for HTTPClient * Initial port from ESP8266 Changed SHA1 fingerprint by Root CA verification Changed log system * Remove deprecated function
This commit is contained in:
parent
05a3de262a
commit
51a4432ca8
@ -0,0 +1,83 @@
|
|||||||
|
/**
|
||||||
|
* Authorization.ino
|
||||||
|
*
|
||||||
|
* Created on: 09.12.2015
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
#include <WiFi.h>
|
||||||
|
#include <WiFiMulti.h>
|
||||||
|
|
||||||
|
#include <HTTPClient.h>
|
||||||
|
|
||||||
|
#define USE_SERIAL Serial
|
||||||
|
|
||||||
|
WiFiMulti wifiMulti;
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
|
||||||
|
USE_SERIAL.begin(115200);
|
||||||
|
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.println();
|
||||||
|
|
||||||
|
for(uint8_t t = 4; t > 0; t--) {
|
||||||
|
USE_SERIAL.printf("[SETUP] WAIT %d...\n", t);
|
||||||
|
USE_SERIAL.flush();
|
||||||
|
delay(1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
wifiMulti.addAP("SSID", "PASSWORD");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
// wait for WiFi connection
|
||||||
|
if((wifiMulti.run() == WL_CONNECTED)) {
|
||||||
|
|
||||||
|
HTTPClient http;
|
||||||
|
|
||||||
|
USE_SERIAL.print("[HTTP] begin...\n");
|
||||||
|
// configure traged server and url
|
||||||
|
|
||||||
|
|
||||||
|
http.begin("http://user:password@192.168.1.12/test.html");
|
||||||
|
|
||||||
|
/*
|
||||||
|
// or
|
||||||
|
http.begin("http://192.168.1.12/test.html");
|
||||||
|
http.setAuthorization("user", "password");
|
||||||
|
|
||||||
|
// or
|
||||||
|
http.begin("http://192.168.1.12/test.html");
|
||||||
|
http.setAuthorization("dXNlcjpwYXN3b3Jk");
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
USE_SERIAL.print("[HTTP] GET...\n");
|
||||||
|
// start connection and send HTTP header
|
||||||
|
int httpCode = http.GET();
|
||||||
|
|
||||||
|
// httpCode will be negative on error
|
||||||
|
if(httpCode > 0) {
|
||||||
|
// HTTP header has been send and Server response header has been handled
|
||||||
|
USE_SERIAL.printf("[HTTP] GET... code: %d\n", httpCode);
|
||||||
|
|
||||||
|
// file found at server
|
||||||
|
if(httpCode == HTTP_CODE_OK) {
|
||||||
|
String payload = http.getString();
|
||||||
|
USE_SERIAL.println(payload);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
USE_SERIAL.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
http.end();
|
||||||
|
}
|
||||||
|
|
||||||
|
delay(10000);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,101 @@
|
|||||||
|
/**
|
||||||
|
* BasicHTTPClient.ino
|
||||||
|
*
|
||||||
|
* Created on: 24.05.2015
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
#include <WiFi.h>
|
||||||
|
#include <WiFiMulti.h>
|
||||||
|
|
||||||
|
#include <HTTPClient.h>
|
||||||
|
|
||||||
|
#define USE_SERIAL Serial
|
||||||
|
|
||||||
|
WiFiMulti wifiMulti;
|
||||||
|
|
||||||
|
/*
|
||||||
|
const char* ca = \
|
||||||
|
"-----BEGIN CERTIFICATE-----\n" \
|
||||||
|
"MIIEkjCCA3qgAwIBAgIQCgFBQgAAAVOFc2oLheynCDANBgkqhkiG9w0BAQsFADA/\n" \
|
||||||
|
"MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT\n" \
|
||||||
|
"DkRTVCBSb290IENBIFgzMB4XDTE2MDMxNzE2NDA0NloXDTIxMDMxNzE2NDA0Nlow\n" \
|
||||||
|
"SjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxIzAhBgNVBAMT\n" \
|
||||||
|
"GkxldCdzIEVuY3J5cHQgQXV0aG9yaXR5IFgzMIIBIjANBgkqhkiG9w0BAQEFAAOC\n" \
|
||||||
|
"AQ8AMIIBCgKCAQEAnNMM8FrlLke3cl03g7NoYzDq1zUmGSXhvb418XCSL7e4S0EF\n" \
|
||||||
|
"q6meNQhY7LEqxGiHC6PjdeTm86dicbp5gWAf15Gan/PQeGdxyGkOlZHP/uaZ6WA8\n" \
|
||||||
|
"SMx+yk13EiSdRxta67nsHjcAHJyse6cF6s5K671B5TaYucv9bTyWaN8jKkKQDIZ0\n" \
|
||||||
|
"Z8h/pZq4UmEUEz9l6YKHy9v6Dlb2honzhT+Xhq+w3Brvaw2VFn3EK6BlspkENnWA\n" \
|
||||||
|
"a6xK8xuQSXgvopZPKiAlKQTGdMDQMc2PMTiVFrqoM7hD8bEfwzB/onkxEz0tNvjj\n" \
|
||||||
|
"/PIzark5McWvxI0NHWQWM6r6hCm21AvA2H3DkwIDAQABo4IBfTCCAXkwEgYDVR0T\n" \
|
||||||
|
"AQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAYYwfwYIKwYBBQUHAQEEczBxMDIG\n" \
|
||||||
|
"CCsGAQUFBzABhiZodHRwOi8vaXNyZy50cnVzdGlkLm9jc3AuaWRlbnRydXN0LmNv\n" \
|
||||||
|
"bTA7BggrBgEFBQcwAoYvaHR0cDovL2FwcHMuaWRlbnRydXN0LmNvbS9yb290cy9k\n" \
|
||||||
|
"c3Ryb290Y2F4My5wN2MwHwYDVR0jBBgwFoAUxKexpHsscfrb4UuQdf/EFWCFiRAw\n" \
|
||||||
|
"VAYDVR0gBE0wSzAIBgZngQwBAgEwPwYLKwYBBAGC3xMBAQEwMDAuBggrBgEFBQcC\n" \
|
||||||
|
"ARYiaHR0cDovL2Nwcy5yb290LXgxLmxldHNlbmNyeXB0Lm9yZzA8BgNVHR8ENTAz\n" \
|
||||||
|
"MDGgL6AthitodHRwOi8vY3JsLmlkZW50cnVzdC5jb20vRFNUUk9PVENBWDNDUkwu\n" \
|
||||||
|
"Y3JsMB0GA1UdDgQWBBSoSmpjBH3duubRObemRWXv86jsoTANBgkqhkiG9w0BAQsF\n" \
|
||||||
|
"AAOCAQEA3TPXEfNjWDjdGBX7CVW+dla5cEilaUcne8IkCJLxWh9KEik3JHRRHGJo\n" \
|
||||||
|
"uM2VcGfl96S8TihRzZvoroed6ti6WqEBmtzw3Wodatg+VyOeph4EYpr/1wXKtx8/\n" \
|
||||||
|
"wApIvJSwtmVi4MFU5aMqrSDE6ea73Mj2tcMyo5jMd6jmeWUHK8so/joWUoHOUgwu\n" \
|
||||||
|
"X4Po1QYz+3dszkDqMp4fklxBwXRsW10KXzPMTZ+sOPAveyxindmjkW8lGy+QsRlG\n" \
|
||||||
|
"PfZ+G6Z6h7mjem0Y+iWlkYcV4PIWL1iwBi8saCbGS5jN2p8M+X+Q7UNKEkROb3N6\n" \
|
||||||
|
"KOqkqm57TH2H3eDJAkSnh6/DNFu0Qg==\n" \
|
||||||
|
"-----END CERTIFICATE-----\n";
|
||||||
|
*/
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
|
||||||
|
USE_SERIAL.begin(115200);
|
||||||
|
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.println();
|
||||||
|
|
||||||
|
for(uint8_t t = 4; t > 0; t--) {
|
||||||
|
USE_SERIAL.printf("[SETUP] WAIT %d...\n", t);
|
||||||
|
USE_SERIAL.flush();
|
||||||
|
delay(1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
wifiMulti.addAP("SSID", "PASSWORD");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
// wait for WiFi connection
|
||||||
|
if((wifiMulti.run() == WL_CONNECTED)) {
|
||||||
|
|
||||||
|
HTTPClient http;
|
||||||
|
|
||||||
|
USE_SERIAL.print("[HTTP] begin...\n");
|
||||||
|
// configure traged server and url
|
||||||
|
//http.begin("https://www.howsmyssl.com/a/check", ca); //HTTPS
|
||||||
|
http.begin("http://example.com/index.html"); //HTTP
|
||||||
|
|
||||||
|
USE_SERIAL.print("[HTTP] GET...\n");
|
||||||
|
// start connection and send HTTP header
|
||||||
|
int httpCode = http.GET();
|
||||||
|
|
||||||
|
// httpCode will be negative on error
|
||||||
|
if(httpCode > 0) {
|
||||||
|
// HTTP header has been send and Server response header has been handled
|
||||||
|
USE_SERIAL.printf("[HTTP] GET... code: %d\n", httpCode);
|
||||||
|
|
||||||
|
// file found at server
|
||||||
|
if(httpCode == HTTP_CODE_OK) {
|
||||||
|
String payload = http.getString();
|
||||||
|
USE_SERIAL.println(payload);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
USE_SERIAL.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
http.end();
|
||||||
|
}
|
||||||
|
|
||||||
|
delay(5000);
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
/**
|
||||||
|
* reuseConnection.ino
|
||||||
|
*
|
||||||
|
* Created on: 22.11.2015
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
#include <WiFi.h>
|
||||||
|
#include <WiFiMulti.h>
|
||||||
|
|
||||||
|
#include <HTTPClient.h>
|
||||||
|
|
||||||
|
#define USE_SERIAL Serial
|
||||||
|
|
||||||
|
WiFiMulti wifiMulti;
|
||||||
|
|
||||||
|
HTTPClient http;
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
|
||||||
|
USE_SERIAL.begin(115200);
|
||||||
|
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.println();
|
||||||
|
|
||||||
|
for(uint8_t t = 4; t > 0; t--) {
|
||||||
|
USE_SERIAL.printf("[SETUP] WAIT %d...\n", t);
|
||||||
|
USE_SERIAL.flush();
|
||||||
|
delay(1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
wifiMulti.addAP("SSID", "PASSWORD");
|
||||||
|
|
||||||
|
// allow reuse (if server supports it)
|
||||||
|
http.setReuse(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
// wait for WiFi connection
|
||||||
|
if((wifiMulti.run() == WL_CONNECTED)) {
|
||||||
|
|
||||||
|
http.begin("http://192.168.1.12/test.html");
|
||||||
|
//http.begin("192.168.1.12", 80, "/test.html");
|
||||||
|
|
||||||
|
int httpCode = http.GET();
|
||||||
|
if(httpCode > 0) {
|
||||||
|
USE_SERIAL.printf("[HTTP] GET... code: %d\n", httpCode);
|
||||||
|
|
||||||
|
// file found at server
|
||||||
|
if(httpCode == HTTP_CODE_OK) {
|
||||||
|
http.writeToStream(&USE_SERIAL);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
USE_SERIAL.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
http.end();
|
||||||
|
}
|
||||||
|
|
||||||
|
delay(1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,100 @@
|
|||||||
|
/**
|
||||||
|
* StreamHTTPClient.ino
|
||||||
|
*
|
||||||
|
* Created on: 24.05.2015
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
#include <WiFi.h>
|
||||||
|
#include <WiFiMulti.h>
|
||||||
|
|
||||||
|
#include <HTTPClient.h>
|
||||||
|
|
||||||
|
#define USE_SERIAL Serial
|
||||||
|
|
||||||
|
WiFiMulti wifiMulti;
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
|
||||||
|
USE_SERIAL.begin(115200);
|
||||||
|
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.println();
|
||||||
|
|
||||||
|
for(uint8_t t = 4; t > 0; t--) {
|
||||||
|
USE_SERIAL.printf("[SETUP] WAIT %d...\n", t);
|
||||||
|
USE_SERIAL.flush();
|
||||||
|
delay(1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
wifiMulti.addAP("SSID", "PASSWORD");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
// wait for WiFi connection
|
||||||
|
if((wifiMulti.run() == WL_CONNECTED)) {
|
||||||
|
|
||||||
|
HTTPClient http;
|
||||||
|
|
||||||
|
USE_SERIAL.print("[HTTP] begin...\n");
|
||||||
|
|
||||||
|
// configure server and url
|
||||||
|
http.begin("http://192.168.1.12/test.html");
|
||||||
|
//http.begin("192.168.1.12", 80, "/test.html");
|
||||||
|
|
||||||
|
USE_SERIAL.print("[HTTP] GET...\n");
|
||||||
|
// start connection and send HTTP header
|
||||||
|
int httpCode = http.GET();
|
||||||
|
if(httpCode > 0) {
|
||||||
|
// HTTP header has been send and Server response header has been handled
|
||||||
|
USE_SERIAL.printf("[HTTP] GET... code: %d\n", httpCode);
|
||||||
|
|
||||||
|
// file found at server
|
||||||
|
if(httpCode == HTTP_CODE_OK) {
|
||||||
|
|
||||||
|
// get lenght of document (is -1 when Server sends no Content-Length header)
|
||||||
|
int len = http.getSize();
|
||||||
|
|
||||||
|
// create buffer for read
|
||||||
|
uint8_t buff[128] = { 0 };
|
||||||
|
|
||||||
|
// get tcp stream
|
||||||
|
WiFiClient * stream = http.getStreamPtr();
|
||||||
|
|
||||||
|
// read all data from server
|
||||||
|
while(http.connected() && (len > 0 || len == -1)) {
|
||||||
|
// get available data size
|
||||||
|
size_t size = stream->available();
|
||||||
|
|
||||||
|
if(size) {
|
||||||
|
// read up to 128 byte
|
||||||
|
int c = stream->readBytes(buff, ((size > sizeof(buff)) ? sizeof(buff) : size));
|
||||||
|
|
||||||
|
// write it to Serial
|
||||||
|
USE_SERIAL.write(buff, c);
|
||||||
|
|
||||||
|
if(len > 0) {
|
||||||
|
len -= c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
delay(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
USE_SERIAL.println();
|
||||||
|
USE_SERIAL.print("[HTTP] connection closed or file end.\n");
|
||||||
|
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
USE_SERIAL.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
http.end();
|
||||||
|
}
|
||||||
|
|
||||||
|
delay(10000);
|
||||||
|
}
|
||||||
|
|
9
libraries/HTTPClient/library.properties
Normal file
9
libraries/HTTPClient/library.properties
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
name=HTTPClient
|
||||||
|
version=1.1
|
||||||
|
author=Markus Sattler
|
||||||
|
maintainer=Markus Sattler
|
||||||
|
sentence=http Client for ESP32
|
||||||
|
paragraph=
|
||||||
|
category=Communication
|
||||||
|
url=https://github.com/Links2004/Arduino/tree/libraries/ESP8266HTTPClient
|
||||||
|
architectures=esp32
|
1116
libraries/HTTPClient/src/HTTPClient.cpp
Normal file
1116
libraries/HTTPClient/src/HTTPClient.cpp
Normal file
File diff suppressed because it is too large
Load Diff
218
libraries/HTTPClient/src/HTTPClient.h
Normal file
218
libraries/HTTPClient/src/HTTPClient.h
Normal file
@ -0,0 +1,218 @@
|
|||||||
|
/**
|
||||||
|
* HTTPClient.h
|
||||||
|
*
|
||||||
|
* Created on: 02.11.2015
|
||||||
|
*
|
||||||
|
* Copyright (c) 2015 Markus Sattler. All rights reserved.
|
||||||
|
* This file is part of the HTTPClient for Arduino.
|
||||||
|
* Port to ESP32 by Evandro Luis Copercini (2017),
|
||||||
|
* changed fingerprints to CA verification.
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2.1 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef HTTPClient_H_
|
||||||
|
#define HTTPClient_H_
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <Arduino.h>
|
||||||
|
#include <WiFiClient.h>
|
||||||
|
|
||||||
|
#define HTTPCLIENT_DEFAULT_TCP_TIMEOUT (5000)
|
||||||
|
|
||||||
|
/// HTTP client errors
|
||||||
|
#define HTTPC_ERROR_CONNECTION_REFUSED (-1)
|
||||||
|
#define HTTPC_ERROR_SEND_HEADER_FAILED (-2)
|
||||||
|
#define HTTPC_ERROR_SEND_PAYLOAD_FAILED (-3)
|
||||||
|
#define HTTPC_ERROR_NOT_CONNECTED (-4)
|
||||||
|
#define HTTPC_ERROR_CONNECTION_LOST (-5)
|
||||||
|
#define HTTPC_ERROR_NO_STREAM (-6)
|
||||||
|
#define HTTPC_ERROR_NO_HTTP_SERVER (-7)
|
||||||
|
#define HTTPC_ERROR_TOO_LESS_RAM (-8)
|
||||||
|
#define HTTPC_ERROR_ENCODING (-9)
|
||||||
|
#define HTTPC_ERROR_STREAM_WRITE (-10)
|
||||||
|
#define HTTPC_ERROR_READ_TIMEOUT (-11)
|
||||||
|
|
||||||
|
/// size for the stream handling
|
||||||
|
#define HTTP_TCP_BUFFER_SIZE (1460)
|
||||||
|
|
||||||
|
/// HTTP codes see RFC7231
|
||||||
|
typedef enum {
|
||||||
|
HTTP_CODE_CONTINUE = 100,
|
||||||
|
HTTP_CODE_SWITCHING_PROTOCOLS = 101,
|
||||||
|
HTTP_CODE_PROCESSING = 102,
|
||||||
|
HTTP_CODE_OK = 200,
|
||||||
|
HTTP_CODE_CREATED = 201,
|
||||||
|
HTTP_CODE_ACCEPTED = 202,
|
||||||
|
HTTP_CODE_NON_AUTHORITATIVE_INFORMATION = 203,
|
||||||
|
HTTP_CODE_NO_CONTENT = 204,
|
||||||
|
HTTP_CODE_RESET_CONTENT = 205,
|
||||||
|
HTTP_CODE_PARTIAL_CONTENT = 206,
|
||||||
|
HTTP_CODE_MULTI_STATUS = 207,
|
||||||
|
HTTP_CODE_ALREADY_REPORTED = 208,
|
||||||
|
HTTP_CODE_IM_USED = 226,
|
||||||
|
HTTP_CODE_MULTIPLE_CHOICES = 300,
|
||||||
|
HTTP_CODE_MOVED_PERMANENTLY = 301,
|
||||||
|
HTTP_CODE_FOUND = 302,
|
||||||
|
HTTP_CODE_SEE_OTHER = 303,
|
||||||
|
HTTP_CODE_NOT_MODIFIED = 304,
|
||||||
|
HTTP_CODE_USE_PROXY = 305,
|
||||||
|
HTTP_CODE_TEMPORARY_REDIRECT = 307,
|
||||||
|
HTTP_CODE_PERMANENT_REDIRECT = 308,
|
||||||
|
HTTP_CODE_BAD_REQUEST = 400,
|
||||||
|
HTTP_CODE_UNAUTHORIZED = 401,
|
||||||
|
HTTP_CODE_PAYMENT_REQUIRED = 402,
|
||||||
|
HTTP_CODE_FORBIDDEN = 403,
|
||||||
|
HTTP_CODE_NOT_FOUND = 404,
|
||||||
|
HTTP_CODE_METHOD_NOT_ALLOWED = 405,
|
||||||
|
HTTP_CODE_NOT_ACCEPTABLE = 406,
|
||||||
|
HTTP_CODE_PROXY_AUTHENTICATION_REQUIRED = 407,
|
||||||
|
HTTP_CODE_REQUEST_TIMEOUT = 408,
|
||||||
|
HTTP_CODE_CONFLICT = 409,
|
||||||
|
HTTP_CODE_GONE = 410,
|
||||||
|
HTTP_CODE_LENGTH_REQUIRED = 411,
|
||||||
|
HTTP_CODE_PRECONDITION_FAILED = 412,
|
||||||
|
HTTP_CODE_PAYLOAD_TOO_LARGE = 413,
|
||||||
|
HTTP_CODE_URI_TOO_LONG = 414,
|
||||||
|
HTTP_CODE_UNSUPPORTED_MEDIA_TYPE = 415,
|
||||||
|
HTTP_CODE_RANGE_NOT_SATISFIABLE = 416,
|
||||||
|
HTTP_CODE_EXPECTATION_FAILED = 417,
|
||||||
|
HTTP_CODE_MISDIRECTED_REQUEST = 421,
|
||||||
|
HTTP_CODE_UNPROCESSABLE_ENTITY = 422,
|
||||||
|
HTTP_CODE_LOCKED = 423,
|
||||||
|
HTTP_CODE_FAILED_DEPENDENCY = 424,
|
||||||
|
HTTP_CODE_UPGRADE_REQUIRED = 426,
|
||||||
|
HTTP_CODE_PRECONDITION_REQUIRED = 428,
|
||||||
|
HTTP_CODE_TOO_MANY_REQUESTS = 429,
|
||||||
|
HTTP_CODE_REQUEST_HEADER_FIELDS_TOO_LARGE = 431,
|
||||||
|
HTTP_CODE_INTERNAL_SERVER_ERROR = 500,
|
||||||
|
HTTP_CODE_NOT_IMPLEMENTED = 501,
|
||||||
|
HTTP_CODE_BAD_GATEWAY = 502,
|
||||||
|
HTTP_CODE_SERVICE_UNAVAILABLE = 503,
|
||||||
|
HTTP_CODE_GATEWAY_TIMEOUT = 504,
|
||||||
|
HTTP_CODE_HTTP_VERSION_NOT_SUPPORTED = 505,
|
||||||
|
HTTP_CODE_VARIANT_ALSO_NEGOTIATES = 506,
|
||||||
|
HTTP_CODE_INSUFFICIENT_STORAGE = 507,
|
||||||
|
HTTP_CODE_LOOP_DETECTED = 508,
|
||||||
|
HTTP_CODE_NOT_EXTENDED = 510,
|
||||||
|
HTTP_CODE_NETWORK_AUTHENTICATION_REQUIRED = 511
|
||||||
|
} t_http_codes;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
HTTPC_TE_IDENTITY,
|
||||||
|
HTTPC_TE_CHUNKED
|
||||||
|
} transferEncoding_t;
|
||||||
|
|
||||||
|
class TransportTraits;
|
||||||
|
typedef std::unique_ptr<TransportTraits> TransportTraitsPtr;
|
||||||
|
|
||||||
|
class HTTPClient
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
HTTPClient();
|
||||||
|
~HTTPClient();
|
||||||
|
|
||||||
|
bool begin(String url);
|
||||||
|
bool begin(String url, const char* CAcert);
|
||||||
|
bool begin(String host, uint16_t port, String uri = "/");
|
||||||
|
bool begin(String host, uint16_t port, String uri, const char* CAcert);
|
||||||
|
|
||||||
|
void end(void);
|
||||||
|
|
||||||
|
bool connected(void);
|
||||||
|
|
||||||
|
void setReuse(bool reuse); /// keep-alive
|
||||||
|
void setUserAgent(const String& userAgent);
|
||||||
|
void setAuthorization(const char * user, const char * password);
|
||||||
|
void setAuthorization(const char * auth);
|
||||||
|
void setTimeout(uint16_t timeout);
|
||||||
|
|
||||||
|
void useHTTP10(bool usehttp10 = true);
|
||||||
|
|
||||||
|
/// request handling
|
||||||
|
int GET();
|
||||||
|
int POST(uint8_t * payload, size_t size);
|
||||||
|
int POST(String payload);
|
||||||
|
int PUT(uint8_t * payload, size_t size);
|
||||||
|
int PUT(String payload);
|
||||||
|
int sendRequest(const char * type, String payload);
|
||||||
|
int sendRequest(const char * type, uint8_t * payload = NULL, size_t size = 0);
|
||||||
|
int sendRequest(const char * type, Stream * stream, size_t size = 0);
|
||||||
|
|
||||||
|
void addHeader(const String& name, const String& value, bool first = false, bool replace = true);
|
||||||
|
|
||||||
|
/// Response handling
|
||||||
|
void collectHeaders(const char* headerKeys[], const size_t headerKeysCount);
|
||||||
|
String header(const char* name); // get request header value by name
|
||||||
|
String header(size_t i); // get request header value by number
|
||||||
|
String headerName(size_t i); // get request header name by number
|
||||||
|
int headers(); // get header count
|
||||||
|
bool hasHeader(const char* name); // check if header exists
|
||||||
|
|
||||||
|
|
||||||
|
int getSize(void);
|
||||||
|
|
||||||
|
WiFiClient& getStream(void);
|
||||||
|
WiFiClient* getStreamPtr(void);
|
||||||
|
int writeToStream(Stream* stream);
|
||||||
|
String getString(void);
|
||||||
|
|
||||||
|
static String errorToString(int error);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
struct RequestArgument {
|
||||||
|
String key;
|
||||||
|
String value;
|
||||||
|
};
|
||||||
|
|
||||||
|
bool beginInternal(String url, const char* expectedProtocol);
|
||||||
|
void clear();
|
||||||
|
int returnError(int error);
|
||||||
|
bool connect(void);
|
||||||
|
bool sendHeader(const char * type);
|
||||||
|
int handleHeaderResponse();
|
||||||
|
int writeToStreamDataBlock(Stream * stream, int len);
|
||||||
|
|
||||||
|
|
||||||
|
TransportTraitsPtr _transportTraits;
|
||||||
|
std::unique_ptr<WiFiClient> _tcp;
|
||||||
|
|
||||||
|
/// request handling
|
||||||
|
String _host;
|
||||||
|
uint16_t _port = 0;
|
||||||
|
bool _reuse = false;
|
||||||
|
uint16_t _tcpTimeout = HTTPCLIENT_DEFAULT_TCP_TIMEOUT;
|
||||||
|
bool _useHTTP10 = false;
|
||||||
|
|
||||||
|
String _uri;
|
||||||
|
String _protocol;
|
||||||
|
String _headers;
|
||||||
|
String _userAgent = "ESP32HTTPClient";
|
||||||
|
String _base64Authorization;
|
||||||
|
|
||||||
|
/// Response handling
|
||||||
|
RequestArgument* _currentHeaders = nullptr;
|
||||||
|
size_t _headerKeysCount = 0;
|
||||||
|
|
||||||
|
int _returnCode = 0;
|
||||||
|
int _size = -1;
|
||||||
|
bool _canReuse = false;
|
||||||
|
transferEncoding_t _transferEncoding = HTTPC_TE_IDENTITY;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* HTTPClient_H_ */
|
@ -13,38 +13,38 @@ const char* password = "your-password"; // your network password
|
|||||||
|
|
||||||
const char* server = "www.howsmyssl.com"; // Server URL
|
const char* server = "www.howsmyssl.com"; // Server URL
|
||||||
|
|
||||||
// www.howsmyssl.com CA certificate, to verify the server
|
// www.howsmyssl.com root certificate authority, to verify the server
|
||||||
// change it to your server CA certificate
|
// change it to your server root CA
|
||||||
// SHA1 fingerprint is broken now!
|
// SHA1 fingerprint is broken now!
|
||||||
|
|
||||||
const char* test_ca_cert = \
|
const char* test_root_ca= \
|
||||||
"-----BEGIN CERTIFICATE-----\n" \
|
"-----BEGIN CERTIFICATE-----\n" \
|
||||||
"MIIEkjCCA3qgAwIBAgIQCgFBQgAAAVOFc2oLheynCDANBgkqhkiG9w0BAQsFADA/\n" \
|
"MIIEkjCCA3qgAwIBAgIQCgFBQgAAAVOFc2oLheynCDANBgkqhkiG9w0BAQsFADA/\n" \
|
||||||
"MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT\n" \
|
"MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT\n" \
|
||||||
"DkRTVCBSb290IENBIFgzMB4XDTE2MDMxNzE2NDA0NloXDTIxMDMxNzE2NDA0Nlow\n" \
|
"DkRTVCBSb290IENBIFgzMB4XDTE2MDMxNzE2NDA0NloXDTIxMDMxNzE2NDA0Nlow\n" \
|
||||||
"SjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxIzAhBgNVBAMT\n" \
|
"SjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUxldCdzIEVuY3J5cHQxIzAhBgNVBAMT\n" \
|
||||||
"GkxldCdzIEVuY3J5cHQgQXV0aG9yaXR5IFgzMIIBIjANBgkqhkiG9w0BAQEFAAOC\n" \
|
"GkxldCdzIEVuY3J5cHQgQXV0aG9yaXR5IFgzMIIBIjANBgkqhkiG9w0BAQEFAAOC\n" \
|
||||||
"AQ8AMIIBCgKCAQEAnNMM8FrlLke3cl03g7NoYzDq1zUmGSXhvb418XCSL7e4S0EF\n" \
|
"AQ8AMIIBCgKCAQEAnNMM8FrlLke3cl03g7NoYzDq1zUmGSXhvb418XCSL7e4S0EF\n" \
|
||||||
"q6meNQhY7LEqxGiHC6PjdeTm86dicbp5gWAf15Gan/PQeGdxyGkOlZHP/uaZ6WA8\n" \
|
"q6meNQhY7LEqxGiHC6PjdeTm86dicbp5gWAf15Gan/PQeGdxyGkOlZHP/uaZ6WA8\n" \
|
||||||
"SMx+yk13EiSdRxta67nsHjcAHJyse6cF6s5K671B5TaYucv9bTyWaN8jKkKQDIZ0\n" \
|
"SMx+yk13EiSdRxta67nsHjcAHJyse6cF6s5K671B5TaYucv9bTyWaN8jKkKQDIZ0\n" \
|
||||||
"Z8h/pZq4UmEUEz9l6YKHy9v6Dlb2honzhT+Xhq+w3Brvaw2VFn3EK6BlspkENnWA\n" \
|
"Z8h/pZq4UmEUEz9l6YKHy9v6Dlb2honzhT+Xhq+w3Brvaw2VFn3EK6BlspkENnWA\n" \
|
||||||
"a6xK8xuQSXgvopZPKiAlKQTGdMDQMc2PMTiVFrqoM7hD8bEfwzB/onkxEz0tNvjj\n" \
|
"a6xK8xuQSXgvopZPKiAlKQTGdMDQMc2PMTiVFrqoM7hD8bEfwzB/onkxEz0tNvjj\n" \
|
||||||
"/PIzark5McWvxI0NHWQWM6r6hCm21AvA2H3DkwIDAQABo4IBfTCCAXkwEgYDVR0T\n" \
|
"/PIzark5McWvxI0NHWQWM6r6hCm21AvA2H3DkwIDAQABo4IBfTCCAXkwEgYDVR0T\n" \
|
||||||
"AQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAYYwfwYIKwYBBQUHAQEEczBxMDIG\n" \
|
"AQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAYYwfwYIKwYBBQUHAQEEczBxMDIG\n" \
|
||||||
"CCsGAQUFBzABhiZodHRwOi8vaXNyZy50cnVzdGlkLm9jc3AuaWRlbnRydXN0LmNv\n" \
|
"CCsGAQUFBzABhiZodHRwOi8vaXNyZy50cnVzdGlkLm9jc3AuaWRlbnRydXN0LmNv\n" \
|
||||||
"bTA7BggrBgEFBQcwAoYvaHR0cDovL2FwcHMuaWRlbnRydXN0LmNvbS9yb290cy9k\n" \
|
"bTA7BggrBgEFBQcwAoYvaHR0cDovL2FwcHMuaWRlbnRydXN0LmNvbS9yb290cy9k\n" \
|
||||||
"c3Ryb290Y2F4My5wN2MwHwYDVR0jBBgwFoAUxKexpHsscfrb4UuQdf/EFWCFiRAw\n" \
|
"c3Ryb290Y2F4My5wN2MwHwYDVR0jBBgwFoAUxKexpHsscfrb4UuQdf/EFWCFiRAw\n" \
|
||||||
"VAYDVR0gBE0wSzAIBgZngQwBAgEwPwYLKwYBBAGC3xMBAQEwMDAuBggrBgEFBQcC\n" \
|
"VAYDVR0gBE0wSzAIBgZngQwBAgEwPwYLKwYBBAGC3xMBAQEwMDAuBggrBgEFBQcC\n" \
|
||||||
"ARYiaHR0cDovL2Nwcy5yb290LXgxLmxldHNlbmNyeXB0Lm9yZzA8BgNVHR8ENTAz\n" \
|
"ARYiaHR0cDovL2Nwcy5yb290LXgxLmxldHNlbmNyeXB0Lm9yZzA8BgNVHR8ENTAz\n" \
|
||||||
"MDGgL6AthitodHRwOi8vY3JsLmlkZW50cnVzdC5jb20vRFNUUk9PVENBWDNDUkwu\n" \
|
"MDGgL6AthitodHRwOi8vY3JsLmlkZW50cnVzdC5jb20vRFNUUk9PVENBWDNDUkwu\n" \
|
||||||
"Y3JsMB0GA1UdDgQWBBSoSmpjBH3duubRObemRWXv86jsoTANBgkqhkiG9w0BAQsF\n" \
|
"Y3JsMB0GA1UdDgQWBBSoSmpjBH3duubRObemRWXv86jsoTANBgkqhkiG9w0BAQsF\n" \
|
||||||
"AAOCAQEA3TPXEfNjWDjdGBX7CVW+dla5cEilaUcne8IkCJLxWh9KEik3JHRRHGJo\n" \
|
"AAOCAQEA3TPXEfNjWDjdGBX7CVW+dla5cEilaUcne8IkCJLxWh9KEik3JHRRHGJo\n" \
|
||||||
"uM2VcGfl96S8TihRzZvoroed6ti6WqEBmtzw3Wodatg+VyOeph4EYpr/1wXKtx8/\n" \
|
"uM2VcGfl96S8TihRzZvoroed6ti6WqEBmtzw3Wodatg+VyOeph4EYpr/1wXKtx8/\n" \
|
||||||
"wApIvJSwtmVi4MFU5aMqrSDE6ea73Mj2tcMyo5jMd6jmeWUHK8so/joWUoHOUgwu\n" \
|
"wApIvJSwtmVi4MFU5aMqrSDE6ea73Mj2tcMyo5jMd6jmeWUHK8so/joWUoHOUgwu\n" \
|
||||||
"X4Po1QYz+3dszkDqMp4fklxBwXRsW10KXzPMTZ+sOPAveyxindmjkW8lGy+QsRlG\n" \
|
"X4Po1QYz+3dszkDqMp4fklxBwXRsW10KXzPMTZ+sOPAveyxindmjkW8lGy+QsRlG\n" \
|
||||||
"PfZ+G6Z6h7mjem0Y+iWlkYcV4PIWL1iwBi8saCbGS5jN2p8M+X+Q7UNKEkROb3N6\n" \
|
"PfZ+G6Z6h7mjem0Y+iWlkYcV4PIWL1iwBi8saCbGS5jN2p8M+X+Q7UNKEkROb3N6\n" \
|
||||||
"KOqkqm57TH2H3eDJAkSnh6/DNFu0Qg==\n" \
|
"KOqkqm57TH2H3eDJAkSnh6/DNFu0Qg==\n" \
|
||||||
"-----END CERTIFICATE-----\n";
|
"-----END CERTIFICATE-----\n";
|
||||||
|
|
||||||
// You can use x.509 client certificates if you want
|
// You can use x.509 client certificates if you want
|
||||||
//const char* test_client_key = ""; //to verify the client
|
//const char* test_client_key = ""; //to verify the client
|
||||||
@ -72,9 +72,9 @@ void setup() {
|
|||||||
Serial.print("Connected to ");
|
Serial.print("Connected to ");
|
||||||
Serial.println(ssid);
|
Serial.println(ssid);
|
||||||
|
|
||||||
client.setCACert(test_ca_cert);
|
client.setCACert(test_root_ca);
|
||||||
//client.setCertificate(certificateBuff); // for client verification
|
//client.setCertificate(test_client_key); // for client verification
|
||||||
//client.setPrivateKey(privateKeyBuff); // for client verification
|
//client.setPrivateKey(test_client_cert); // for client verification
|
||||||
|
|
||||||
Serial.println("\nStarting connection to server...");
|
Serial.println("\nStarting connection to server...");
|
||||||
if (!client.connect(server, 443))
|
if (!client.connect(server, 443))
|
||||||
@ -87,10 +87,12 @@ void setup() {
|
|||||||
client.println("Connection: close");
|
client.println("Connection: close");
|
||||||
client.println();
|
client.println();
|
||||||
|
|
||||||
Serial.print("Waiting for response "); //WiFiClientSecure uses a non blocking implementation
|
while (client.connected()) {
|
||||||
while (!client.available()){
|
String line = client.readStringUntil('\n');
|
||||||
delay(50); //
|
if (line == "\r") {
|
||||||
Serial.print(".");
|
Serial.println("headers received");
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// if there are incoming bytes available
|
// if there are incoming bytes available
|
||||||
// from the server, read them and print them:
|
// from the server, read them and print them:
|
||||||
@ -99,13 +101,8 @@ void setup() {
|
|||||||
Serial.write(c);
|
Serial.write(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
// if the server's disconnected, stop the client:
|
|
||||||
if (!client.connected()) {
|
|
||||||
Serial.println();
|
|
||||||
Serial.println("disconnecting from server.");
|
|
||||||
client.stop();
|
client.stop();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
|
@ -64,6 +64,7 @@ WiFiClientSecure::WiFiClientSecure(int sock)
|
|||||||
WiFiClientSecure::~WiFiClientSecure()
|
WiFiClientSecure::~WiFiClientSecure()
|
||||||
{
|
{
|
||||||
stop();
|
stop();
|
||||||
|
delete sslclient;
|
||||||
}
|
}
|
||||||
|
|
||||||
WiFiClientSecure &WiFiClientSecure::operator=(const WiFiClientSecure &other)
|
WiFiClientSecure &WiFiClientSecure::operator=(const WiFiClientSecure &other)
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
#include "ssl_client.h"
|
#include "ssl_client.h"
|
||||||
|
|
||||||
class WiFiClientSecure : public Client
|
class WiFiClientSecure : public WiFiClient
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
bool _connected;
|
bool _connected;
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include <lwip/netdb.h>
|
#include <lwip/netdb.h>
|
||||||
#include "ssl_client.h"
|
#include "ssl_client.h"
|
||||||
|
|
||||||
|
|
||||||
const char *pers = "esp32-tls";
|
const char *pers = "esp32-tls";
|
||||||
|
|
||||||
static int handle_error(int err)
|
static int handle_error(int err)
|
||||||
@ -153,11 +154,9 @@ int start_ssl_client(sslclient_context *ssl_client, uint32_t ipAddress, uint32_t
|
|||||||
log_i("Performing the SSL/TLS handshake...");
|
log_i("Performing the SSL/TLS handshake...");
|
||||||
|
|
||||||
while ((ret = mbedtls_ssl_handshake(&ssl_client->ssl_ctx)) != 0) {
|
while ((ret = mbedtls_ssl_handshake(&ssl_client->ssl_ctx)) != 0) {
|
||||||
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE && ret != -76) { //workaround for bug: https://github.com/espressif/esp-idf/issues/434
|
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) {
|
||||||
return handle_error(ret);
|
return handle_error(ret);
|
||||||
}
|
}
|
||||||
delay(10);
|
|
||||||
vPortYield();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -224,7 +223,7 @@ int data_to_read(sslclient_context *ssl_client)
|
|||||||
//log_e("RET: %i",ret); //for low level debug
|
//log_e("RET: %i",ret); //for low level debug
|
||||||
res = mbedtls_ssl_get_bytes_avail(&ssl_client->ssl_ctx);
|
res = mbedtls_ssl_get_bytes_avail(&ssl_client->ssl_ctx);
|
||||||
//log_e("RES: %i",res);
|
//log_e("RES: %i",res);
|
||||||
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE && ret < 0 && ret != -76) {
|
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE && ret < 0) {
|
||||||
return handle_error(ret);
|
return handle_error(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -238,7 +237,7 @@ int send_ssl_data(sslclient_context *ssl_client, const uint8_t *data, uint16_t l
|
|||||||
int ret = -1;
|
int ret = -1;
|
||||||
|
|
||||||
while ((ret = mbedtls_ssl_write(&ssl_client->ssl_ctx, data, len)) <= 0) {
|
while ((ret = mbedtls_ssl_write(&ssl_client->ssl_ctx, data, len)) <= 0) {
|
||||||
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE && ret != -76) {
|
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) {
|
||||||
return handle_error(ret);
|
return handle_error(ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
typedef struct sslclient_context {
|
typedef struct sslclient_context {
|
||||||
int socket;
|
int socket;
|
||||||
mbedtls_net_context net_ctx;
|
|
||||||
mbedtls_ssl_context ssl_ctx;
|
mbedtls_ssl_context ssl_ctx;
|
||||||
mbedtls_ssl_config ssl_conf;
|
mbedtls_ssl_config ssl_conf;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user