This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Bug with _parseURL() #21
Labels
Need more info
Have to post more info, such as MRE
Comments
You have to save us some time by including MRE in any issue. I certainly can create some code to test, but just wasting time, better to use yours. |
Sorry, here is the sketch: #define _ASYNC_HTTPS_LOGLEVEL_ 4
#include <WiFi.h>
#include "Arduino.h"
#include <AsyncHTTPSRequest_Generic.h>
// Wifi Credentials
const char* WIFI_SSID = "wifi";
const char* WIFI_PASSWORD = "password";
AsyncHTTPSRequest request;
void setup() {
Serial.begin(115200);
// WiFi Init
WiFi.mode(WIFI_STA);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("[WIFI] connecting to network " + String(WIFI_SSID) );
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("[WIFI] connected with Ip: " + WiFi.localIP().toString() );
request.setDebug(true);
request.open("GET", "https://www.google.com");
// request.open("GET", "https://www.google.com/");
}
void loop() {
}
When URL =
When URL =
|
Closed
Hi @redphx The new AsyncHTTPSRequest_Generic v2.5.0 has just been published. Your contribution is noted in Contributions and Thanks Please test and report more bugs. Best Regards, Releases v2.5.0
|
These are the terminal outputs using your test code Using url = https://www.google.com
Using url = https://www.google.com/
|
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_Generic
that referenced
this issue
Feb 1, 2023
### Releases v1.13.0 1. Add support to ESP32 boards using `LwIP W6100 Ethernet` 2. Fix bug of `_parseURL()`. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 3. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_Generic
that referenced
this issue
Feb 1, 2023
### Releases v1.13.0 1. Add support to ESP32 boards using `LwIP W6100 Ethernet` 2. Fix bug of `_parseURL()`. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 3. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_Generic
that referenced
this issue
Feb 1, 2023
### Releases v1.13.0 1. Add support to ESP32 boards using `LwIP W6100 Ethernet` 2. Fix bug of `_parseURL()`. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 3. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_Generic
that referenced
this issue
Feb 1, 2023
### Releases v1.13.0 1. Add support to ESP32 boards using `LwIP W6100 Ethernet` 2. Fix bug of `_parseURL()`. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 3. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/Portenta_H7_AsyncHTTPRequest
that referenced
this issue
Feb 1, 2023
### Releases v1.5.0 1. Fix bug of `_parseURL()`. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 2. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_RP2040W
that referenced
this issue
Feb 1, 2023
### Release v1.3.0 1. Fix bug of `_parseURL()`. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 2. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_RP2040W
that referenced
this issue
Feb 1, 2023
### Release v1.3.0 1. Fix bug of `_parseURL()`. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 2. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_RP2040W
that referenced
this issue
Feb 1, 2023
### Release v1.3.0 1. Fix bug of `_parseURL()`. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 2. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_ESP32_Ethernet
that referenced
this issue
Feb 1, 2023
### Releases v1.15.0 1. Fix `_parseURL()` bug. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 2. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_Teensy41
that referenced
this issue
Feb 1, 2023
### Releases v1.10.0 1. Fix `_parseURL()` bug. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 2. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPRequest_Teensy41
that referenced
this issue
Feb 1, 2023
### Releases v1.10.0 1. Fix `_parseURL()` bug. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 2. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPSRequest_ESP32_Ethernet
that referenced
this issue
Feb 1, 2023
### Releases v2.7.0 1. Fix wrong `reqStates` bug. Check [Callback behavior buggy #19](khoih-prog/AsyncHTTPSRequest_Generic#19) 2. Fix `_parseURL()` bug. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 3. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPSRequest_ESP32_Ethernet
that referenced
this issue
Feb 1, 2023
### Releases v2.7.0 1. Fix wrong `reqStates` bug. Check [Callback behavior buggy #19](khoih-prog/AsyncHTTPSRequest_Generic#19) 2. Fix `_parseURL()` bug. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 3. Improve `README.md` so that links can be used in other sites, such as `PIO`
khoih-prog
added a commit
to khoih-prog/AsyncHTTPSRequest_ESP32_Ethernet
that referenced
this issue
Feb 1, 2023
### Releases v2.7.0 1. Fix wrong `reqStates` bug. Check [Callback behavior buggy #19](khoih-prog/AsyncHTTPSRequest_Generic#19) 2. Fix `_parseURL()` bug. Check [Bug with _parseURL() #21](khoih-prog/AsyncHTTPSRequest_Generic#21) 3. Improve `README.md` so that links can be used in other sites, such as `PIO`
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
_parseURL()
doesn't considerhttps://www.google.com
a valid URL, but it does withhttps://www.google.com/
.The text was updated successfully, but these errors were encountered: