Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

GET requests not work properly #6332

Closed
6 tasks done
dzmpr opened this issue Jul 23, 2019 · 8 comments
Closed
6 tasks done

GET requests not work properly #6332

dzmpr opened this issue Jul 23, 2019 · 8 comments

Comments

@dzmpr
Copy link

dzmpr commented Jul 23, 2019

Basic Infos

  • This issue complies with the issue POLICY doc.
  • 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.
  • If there is a stack dump, I have decoded it.
  • I have filled out all fields below.

Platform

  • Hardware: ESP-12E/NodeMCU v.10
  • Core Version: 2.5.2
  • Development Env: Platformio/ArduinoIDE
  • Operating System: Windows

Settings in IDE

  • Module: Nodemcu v1.0
  • Flash Mode: qio
  • Flash Size: 4MB
  • lwip Variant: v2 Lower Memory
  • Reset Method: nodemcu
  • Flash Frequency: 40Mhz
  • CPU Frequency: 80Mhz
  • Upload Using: SERIAL
  • Upload Speed: 115200

Problem Description

When requests running with delay several seconds between on core 2.5.2 the data (received with .getString()) not modifying (with reuse set to true).
When I set reuse false - response just get w/o body. And every second response return -2 HTTP error code. In both situations script on server the same (obviously). And this problem doesn't happen on 2.4.2 core.
Here #6149 man stuck with the same problem, but no one respond.

MCVE Sketch

#include <Arduino.h>
#include <ESP8266HTTPClient.h>
#include <ESP8266WiFi.h>

BearSSL::WiFiClientSecure client;
HTTPClient https;

void setup() {
    Serial.begin(115200);
    WiFi.begin("ssid","pass");
    while(WiFi.status() != WL_CONNECTED) {
        Serial.print(".");
        delay(500);
    }
    Serial.println("\nWifi connected!");
    uint8_t cert[20] = {184,120,14,91,203,255,205,98,26,130,214,144,95,34,236,197,210,208,31,245};
    client.setFingerprint(cert);
    https.setReuse(true);
    https.begin(client, "https://link");
}

int code;
String response;

void loop() {
    code = https.GET();
    Serial.println("Code: " + String(code));
    response = https.getString();
    Serial.println("Body: " + response);
    delay(2000);
}

Debug Messages

##With reuse

Code: 200
Body: mode?a=16711680&b=2
Code: 200
Body: mode?a=16711680&b=2
Code: 200
Body: mode?a=16711680&b=2
Code: 200
Body: mode?a=16711680&b=2
@@@Here I change data in database, but messages below are similar to above.
Code: 200
Body: mode?a=16711680&b=2
Code: 200
Body: mode?a=16711680&b=2
Code: 200
Body: mode?a=16711680&b=2
Code: 200
Body: mode?a=16711680&b=2

##Without reuse

@@@Each other request get failed, and all requests return empty body.
Code: -2
Body:
Code: 200
Body:
Code: -2
Body:
Code: 200
Body:
Code: -2
Body:
Code: 200
Body:
Code: -2
Body:
Code: 200
@dzmpr
Copy link
Author

dzmpr commented Jul 24, 2019

I also tested with https.useHTTP10(false), this also had no affect.
And I tried use latest version from git - same problem.

@dzmpr
Copy link
Author

dzmpr commented Aug 4, 2019

So, anyone can tell me about this situation? Is it known bug which will be fixed in next updates, or no one really knows about this?

@d-a-v
Copy link
Collaborator

d-a-v commented Aug 4, 2019

@dmdt are you able to try PR #6176 ?

@dzmpr
Copy link
Author

dzmpr commented Aug 4, 2019

@d-a-v Tried, this has no affect on behaviour.

@dorindabassey
Copy link

hello there, am also having same issues, am trying to post data to my https://server online and am getting response code: 200 but the payload returns :datanotposted from the server

@dorindabassey
Copy link

`// FROM HERE!!!
if (WiFi.status() == WL_CONNECTED) {
HTTPClient http;

// Your Domain name with URL path or IP address with path
// http.begin(serverName);

// Specify content-type header
http.addHeader("Content-Type", "application/x-www-form-urlencoded");

// Prepare your HTTP POST request data
String httpRequestData = "api_key=" + apiKeyValue + "&name=" + incomingName + "&email=" + incomingEmail + "&userid=" + userId + "&useramount=" + userAmount + "";
Serial.print("httpRequestData: ");
Serial.println(httpRequestData);
int httpsbegincode = http.begin(serverName, "5B FB D1 D4 49 D3 0F A9 C6 40 03 34 BA E0 24 05 AA D2 E2 01");
Serial.println(httpsbegincode);

// Send HTTP POST request
int httpResponseCode = http.POST(httpRequestData);
String payload = http.getString();
Serial.println("PAYLOAD");
Serial.println(payload);


if (httpResponseCode > 0) {
  Serial.print("HTTP Response code: ");
  Serial.println(httpResponseCode);
}
else {
  Serial.print("Error code: ");
  Serial.println(httpResponseCode);
}
// Free resources''

http.end();
Serial.println("connection over");

}
else {
Serial.println("WiFi Disconnected");
}
`
below is a picture of my serial monitor
20190804_172820

@d-a-v
Copy link
Collaborator

d-a-v commented Aug 5, 2019

#6176 will fix this

@devyte
Copy link
Collaborator

devyte commented Nov 10, 2019

#6176 is merged. Closing.
If you think the problem is still relevant, please open a new issue and follow the template instructions.

@devyte devyte closed this as completed Nov 10, 2019
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants