-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Feature/http client wi fi client parameter #4979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Jeroen88
wants to merge
15
commits into
esp8266:master
from
Jeroen88:feature/HTTPClient_WiFiClient_parameter
Closed
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
ff2858a
Function added to detect baudrate
f9ae2c4
Two begin() methods added to pass WiFiClient, updated examples
d0d7466
Merge branch 'master' into feature/HTTPClient_WiFiClient_parameter
96636f2
Merge branch 'master' into feature/HTTPClient_WiFiClient_parameter
5aff343
Merge branch 'master' into feature/HTTPClient_WiFiClient_parameter
d4db72d
add basicHttpsClient example, ensured in the backward compatible func…
2807373
Merge branch 'master' into feature/HTTPClient_WiFiClient_parameter
815fb0f
Adding #pragma's to suppress Travis Build warning for use of deprecat…
2047402
Adding #pragma's to suppress Travis Build warning for use of deprecat…
5ff9728
Adding #pragma's to suppress Travis Build warning for use of deprecat…
11ea32a
Adding #pragma's to suppress Travis Build warning for use of deprecat…
cfd977c
revert accidentally changed files ESP8266httpUpdate.h and .cpp to ori…
dc20696
Adding #pragma's to ESP8266httpUpdate.cpp to ignore use of deprecated…
29e7754
Allocate BearSSL::WiFiClientSecure dynamically in StreamHttpsClient.ino
fba638c
Bugfix in getStream() and getStreamPtr()
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,22 +12,22 @@ | |
|
||
#include <ESP8266HTTPClient.h> | ||
|
||
#define USE_SERIAL Serial | ||
#include <WiFiClient.h> | ||
|
||
ESP8266WiFiMulti WiFiMulti; | ||
|
||
void setup() { | ||
|
||
USE_SERIAL.begin(115200); | ||
// USE_SERIAL.setDebugOutput(true); | ||
Serial.begin(115200); | ||
// Serial.setDebugOutput(true); | ||
|
||
USE_SERIAL.println(); | ||
USE_SERIAL.println(); | ||
USE_SERIAL.println(); | ||
Serial.println(); | ||
Serial.println(); | ||
Serial.println(); | ||
|
||
for (uint8_t t = 4; t > 0; t--) { | ||
USE_SERIAL.printf("[SETUP] WAIT %d...\n", t); | ||
USE_SERIAL.flush(); | ||
Serial.printf("[SETUP] WAIT %d...\n", t); | ||
Serial.flush(); | ||
delay(1000); | ||
} | ||
|
||
|
@@ -40,46 +40,47 @@ void loop() { | |
// wait for WiFi connection | ||
if ((WiFiMulti.run() == WL_CONNECTED)) { | ||
|
||
WiFiClient client; | ||
|
||
HTTPClient http; | ||
|
||
USE_SERIAL.print("[HTTP] begin...\n"); | ||
Serial.print("[HTTP] begin...\n"); | ||
// configure traged server and url | ||
|
||
|
||
http.begin("http://user:[email protected]/test.html"); | ||
http.begin(client, "http://guest:[email protected]/HTTP/Basic/"); | ||
|
||
/* | ||
// or | ||
http.begin("http://192.168.1.12/test.html"); | ||
http.setAuthorization("user", "password"); | ||
http.begin(client, "http://jigsaw.w3.org/HTTP/Basic/"); | ||
http.setAuthorization("guest", "guest"); | ||
|
||
// or | ||
http.begin("http://192.168.1.12/test.html"); | ||
http.setAuthorization("dXNlcjpwYXN3b3Jk"); | ||
http.begin(client, "http://jigsaw.w3.org/HTTP/Basic/"); | ||
http.setAuthorization("Z3Vlc3Q6Z3Vlc3Q="); | ||
*/ | ||
|
||
|
||
USE_SERIAL.print("[HTTP] GET...\n"); | ||
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); | ||
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); | ||
Serial.println(payload); | ||
} | ||
} else { | ||
USE_SERIAL.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str()); | ||
Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str()); | ||
} | ||
|
||
http.end(); | ||
} | ||
|
||
delay(10000); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
libraries/ESP8266HTTPClient/examples/BasicHttpsClient/BasicHttpsClient.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/** | ||
BasicHTTPSClient.ino | ||
|
||
Created on: 20.08.2018 | ||
|
||
*/ | ||
|
||
#include <Arduino.h> | ||
|
||
#include <ESP8266WiFi.h> | ||
#include <ESP8266WiFiMulti.h> | ||
|
||
#include <ESP8266HTTPClient.h> | ||
|
||
#include <WiFiClientSecureBearSSL.h> | ||
// Fingerprint for demo URL, expires on June 2, 2019, needs to be updated well before this date | ||
const uint8_t fingerprint[20] = {0x5A, 0xCF, 0xFE, 0xF0, 0xF1, 0xA6, 0xF4, 0x5F, 0xD2, 0x11, 0x11, 0xC6, 0x1D, 0x2F, 0x0E, 0xBC, 0x39, 0x8D, 0x50, 0xE0}; | ||
|
||
ESP8266WiFiMulti WiFiMulti; | ||
|
||
void setup() { | ||
|
||
Serial.begin(115200); | ||
// Serial.setDebugOutput(true); | ||
|
||
Serial.println(); | ||
Serial.println(); | ||
Serial.println(); | ||
|
||
for (uint8_t t = 4; t > 0; t--) { | ||
Serial.printf("[SETUP] WAIT %d...\n", t); | ||
Serial.flush(); | ||
delay(1000); | ||
} | ||
|
||
WiFi.mode(WIFI_STA); | ||
WiFiMulti.addAP("SSID", "PASSWORD"); | ||
} | ||
|
||
void loop() { | ||
// wait for WiFi connection | ||
if ((WiFiMulti.run() == WL_CONNECTED)) { | ||
|
||
BearSSL::WiFiClientSecure client; | ||
client.setFingerprint(fingerprint); | ||
|
||
HTTPClient https; | ||
|
||
Serial.print("[HTTPS] begin...\n"); | ||
if (https.begin(client, "https://jigsaw.w3.org/HTTP/connection.html")) { // HTTPS | ||
|
||
|
||
Serial.print("[HTTPS] GET...\n"); | ||
// start connection and send HTTP header | ||
int httpCode = https.GET(); | ||
|
||
// httpCode will be negative on error | ||
if (httpCode > 0) { | ||
// HTTP header has been send and Server response header has been handled | ||
Serial.printf("[HTTPS] GET... code: %d\n", httpCode); | ||
|
||
// file found at server | ||
if (httpCode == HTTP_CODE_OK || httpCode == HTTP_CODE_MOVED_PERMANENTLY) { | ||
String payload = https.getString(); | ||
Serial.println(payload); | ||
} | ||
} else { | ||
Serial.printf("[HTTPS] GET... failed, error: %s\n", https.errorToString(httpCode).c_str()); | ||
} | ||
|
||
https.end(); | ||
} else { | ||
Serial.printf("[HTTPS] Unable to connect\n"); | ||
} | ||
} | ||
|
||
delay(10000); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice test, moving it to a public web service!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:)