You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have read the documentation at readthedocs and the issue is not addressed there.
I have tested that the issue is present in current master branch (aka latest git).
I have searched the issue tracker for a similar issue.
I have filled out all fields below.
Platform
Hardware: [other]
Core Version: [latest git hash or date]
Development Env: [Arduino IDE]
Operating System: [MacOS]
Settings in IDE
Module: [Generic ESP8266 Module]
Flash Mode: [dior]
Flash Size: [4MB]
lwip Variant: [v2 Lower Memory]
CPU Frequency: [80Mhz]
Upload Using: [SERIAL]
Upload Speed: [115200] (serial upload only)
Problem Description
When I try and call against the DD-WRT router firmware with an http authorization username/password it will give me a -2 "send header failed" every other call. This does not happen when it is called from other devices. It also is not related to the time between calls, as it is always every other be it once per second or once per half second.
#include<Arduino.h>
v/* All the imports and setup for the wifi */
#include<Arduino.h>
#include<ESP8266WiFi.h>// Imports
#include<ESP8266WiFiMulti.h>
#include<ESP8266HTTPClient.h>
#include<WiFiClient.h>
ESP8266WiFiMulti WiFiMulti;
WiFiClient client;
HTTPClient http;
// Settings constint time_between_updates = 500; // time between bandwidth checks in ms// Variables we will be usingchar last_router_return = 'Wait for it...';
int last_update = -1001;
voidsetup() {
// Start the serial at 115200 baurd
Serial.begin(115200);
// Connect to the wifi
WiFi.mode(WIFI_STA);
WiFiMulti.addAP("SSID", "PASSWORD");
}
voidloop() {
int now = millis();
if(now>=last_update+time_between_updates){
last_update = now;
get_bandwidth_usage();
}else{
Serial.print(millis());
Serial.print("");
Serial.println(last_update+time_between_updates);
delay(100);
}
}
// Timer will call this every second (because internets are sold in mb/s)boolget_bandwidth_usage(){
if ((WiFiMulti.run() == WL_CONNECTED)) {
http.begin(client, "http://ROUTER_USERNAME:ROUTER_PASSWORD@192.168.1.1/fetchif.cgi?br0");
// We're connected so make that call!int httpCode = http.GET();
Serial.println(httpCode);
// If it's a positive number (because it didn't error arduino side) and it's 200 (because that means the server succeeded).if (httpCode > 0) {
if (httpCode == HTTP_CODE_OK){
// The stuff I want to do will go here.
}
}else{
Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
}
}else{
Serial.println("Looks like we're not connected to the WiFi yet. Lets try that next pass.");
}
}```
### Debug Messages
I have described same problem, check this #5818 (comment) .
But not only problem with -2 code, it leave when I set reuse to true.
I can't recieve variable data, responses are the same as first.
This bug is quite old and there have been two major fixes to the reuse behavior. I believe this was fixed with either #6457 or #6476. If not, please re-test against master and open a new bug with MCVE/etc.
Basic Infos
Platform
Settings in IDE
Problem Description
When I try and call against the DD-WRT router firmware with an http authorization username/password it will give me a -2 "send header failed" every other call. This does not happen when it is called from other devices. It also is not related to the time between calls, as it is always every other be it once per second or once per half second.
MCVE Sketch
-2
[HTTP] GET... failed, error: send header failed
The text was updated successfully, but these errors were encountered: