我在Arduino IDE中ESP的httpsecureclient库有问题。
我尝试将http请求发送到https域(这不会改变)并且工作很多次都很好。
就像我做一些HTTP调用来获取某些数据,让ESP做它的事情。但是当我想让ESP发布一个有效载荷到服务器,使用WiFiClientSecure
和HTTPClient
,它有时工作没有问题,但突然,它停止工作,扔给我众所周知的,没有说-1
响应代码…
发送心跳的代码如下;
#include <HTTPClient.h>
#include <WiFiClientSecure.h>
#include <ArduinoJson.h>
WiFiClientSecure ApiClient;
HTTPClient ApiHttpClient;
StaticJsonDocument<256> doc;
doc["mac"] = deviceMacAddress;
doc["key"] = DEVICE_SECRET;
doc["type"] = DIGITAL_HQ_SOFTWARE_TYPE;
String heartbeatData;
serializeJson(doc, heartbeatData);
ApiClient.setInsecure(); //skip verification of SSL cert
Serial.println("Sending Heartbeat");
ApiHttpClient.begin(ApiClient, DIGITAL_HQ_HEARTBEAT_ENDPOINT);
ApiHttpClient.addHeader("Content-Type", "application/json");
ApiHttpClient.setUserAgent(DIGITAL_HQ_USER_AGENT);
int responseCode = ApiHttpClient.POST(heartbeatData); // just post, Don't care about the response.
if (responseCode != 200) {
failedApiCalls ++;
}
Serial.print("ResponseCode from heartbeat: ");
Serial.println(responseCode);
// Free resources
ApiHttpClient.end();
这段代码运行在核心0上,通过下面的函数;xTaskCreatePinnedToCore(sendHeartBeat, "Send Heartbeat", 20000, NULL, 25, &heartBeatTask, 0);
我在主核心中调用心跳一次,然后它工作,但是在第二个核心中,它有时会,但其他时候,它不会。
我觉得这没什么特别的,我真的搞不懂这个…
指出:
有一个MQTT连接运行到AWS物联网中心,在核心1上,我没有任何问题。
我目前在更新库后遇到同样的问题,esp32 http客户端的旧代码停止工作,出现相同的症状。
我可以通过切换到只使用HTTPClient来解决这个问题,没有wiificlientsecure。它可以与https一起使用。
#include <HTTPClient.h>
#include <Arduino_JSON.h>
void getPricesFromKraken(){
String url = "https://api.kraken.com/0/public/Ticker?pair=DOGEUSD,XBTUSD";
HTTPClient http;
JSONVar data;
http.begin(url.c_str());
int httpResponseCode = http.GET();
if (httpResponseCode > 0) {
String payload = http.getString();
data = JSON.parse(payload);
Serial.println(data);
}
else {
Serial.printf("http response code: %dn", httpResponseCode);
}
http.end();
}