使用 NativeEthernet 发布到 InfluxDB 时出现 400 错误请求
400 Bad Request while posting to InfluxDB with NativeEthernet
对于一个项目,我们正在尝试监控通过 TCP 在本地网络上发送的状态协议,并且 post 这些状态消息通过 HTTPS 发送到 https://www.influxdata.com/products/influxdb-cloud/ 上 AWS 上的 InfluxDB 实例。
我们使用带有以太网套件的 teensy 4.1 以及 vjmuzik https://github.com/vjmuzik/NativeEthernet.
的原生以太网库
Post 通过 LAN 将字符串发送到测试实例到 IP 工作正常,但每当我们尝试 post 到 AWS 子域时,我们都会收到以下响应:
HTTP/1.1 400 Bad Request
Server: awselb/2.0
Date: Mon, 27 Sep 2021 18:13:02 GMT
Content-Type: text/html
Content-Length: 122
Connection: close
<html>
<head><title>400 Bad Request</title></head>
<body>
<center><h1>400 Bad Request</h1></center>
</body>
</html>
因为我们在本地 post 时验证了 post 的 headers 和 body 是正确的,并且 posting to AWS 在使用时有效Post伙计,我们现在不知所措。不幸的是,我没有关于我们尝试 POST 的服务器配置的信息。
我们已经尝试过:
- 使用不同的以太网库,目前我们正在使用
来自 vjmuzik 的 NativeEthernet https://github.com/vjmuzik/NativeEthernet
- 不同组headers
- 在 ethernet.begin()
中添加 google dns
- Post 通过 http 后跟 post 通过 https
由普通 html 请求
生成的重定向响应
- 添加证书
- 使用 postman
验证 InfluxDB 线路协议
作为测试,我们 set-up WebClientRepeatingTLS 示例使用我们自己的 POST headers 和 body.
#include <NativeEthernet.h>
uint8_t mac[6];
void teensyMAC(uint8_t *mac) {
for (uint8_t by = 0; by < 2; by++) mac[by] = (HW_OCOTP_MAC1 >> ((1 - by) * 8)) & 0xFF;
for (uint8_t by = 0; by < 4; by++) mac[by + 2] = (HW_OCOTP_MAC0 >> ((3 - by) * 8)) & 0xFF;
Serial.printf("MAC: %02x:%02x:%02x:%02x:%02x:%02x\n", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
}
// initialize the library instance:
EthernetClient client;
const int port = 443;
char server[] = "influxdata.com";
//IPAddress server(192, 168, 1, 246);
String outputMSG = "measurementName,tagKey=tagValue fieldKey=1i";
unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds
const unsigned long postingInterval = 5 * 1000; // delay between updates, in milliseconds
void setup() {
teensyMAC(mac);
Serial.begin(9600);
while (!Serial) {
;
}
Serial.println("Initialize Ethernet with DHCP:");
if (Ethernet.begin(mac) == 0) {
Serial.println("Failed to configure Ethernet using DHCP");
if (Ethernet.hardwareStatus() == EthernetNoHardware) {
Serial.println("Ethernet shield was not found. Sorry, can't run without hardware. :(");
while (true) {
delay(1);
}
}
if (Ethernet.linkStatus() == LinkOFF) {
Serial.println("Ethernet cable is not connected.");
}
} else {
Serial.print(" DHCP assigned IP ");
Serial.println(Ethernet.localIP());
}
delay(1000);
}
void loop() {
if (client.available()) {
char c = client.read();
Serial.write(c);
}
if (millis() - lastConnectionTime > postingInterval) {
httpRequest();
}
}
void httpRequest() {
client.stop();
Serial.print("Content-Length: ");
Serial.println(outputMSG.length());
Serial.println("");
if (client.connect(server, port, true)) {
Serial.println("connecting to ");
Serial.print(server);
Serial.print(":");
Serial.println(port);
client.println("POST /api/v2/write?org=ORG_HERE&bucket=BUCKET_HERE&precision=s HTTP/1.1");
client.println("Host: https://eu-central-1-1.aws.cloud2.influxdata.com");
client.println("Authorization: Token <<TOKEN HERE>>");
client.println("Content-Type: text/plain");
client.print("Content-Length: ");
client.println(outputMSG.length());
client.println("Accept-Encoding: gzip, deflate, br");
client.println("Connection: keep-alive");
client.println();
client.println(outputMSG);
client.println();
lastConnectionTime = millis();
} else {
Serial.println("connection failed");
}
}
谁能帮助我们理解为什么 post 到 aws 没有通过?
干杯,
男孩
使用 EthernetWebServerSSL library in combination with theQNEthernet 库使 teensy 可以连接到 AWS 子域,因此允许它 post 到 Influxdb 数据库。
对于一个项目,我们正在尝试监控通过 TCP 在本地网络上发送的状态协议,并且 post 这些状态消息通过 HTTPS 发送到 https://www.influxdata.com/products/influxdb-cloud/ 上 AWS 上的 InfluxDB 实例。
我们使用带有以太网套件的 teensy 4.1 以及 vjmuzik https://github.com/vjmuzik/NativeEthernet.
的原生以太网库Post 通过 LAN 将字符串发送到测试实例到 IP 工作正常,但每当我们尝试 post 到 AWS 子域时,我们都会收到以下响应:
HTTP/1.1 400 Bad Request
Server: awselb/2.0
Date: Mon, 27 Sep 2021 18:13:02 GMT
Content-Type: text/html
Content-Length: 122
Connection: close
<html>
<head><title>400 Bad Request</title></head>
<body>
<center><h1>400 Bad Request</h1></center>
</body>
</html>
因为我们在本地 post 时验证了 post 的 headers 和 body 是正确的,并且 posting to AWS 在使用时有效Post伙计,我们现在不知所措。不幸的是,我没有关于我们尝试 POST 的服务器配置的信息。
我们已经尝试过:
- 使用不同的以太网库,目前我们正在使用 来自 vjmuzik 的 NativeEthernet https://github.com/vjmuzik/NativeEthernet
- 不同组headers
- 在 ethernet.begin() 中添加 google dns
- Post 通过 http 后跟 post 通过 https 由普通 html 请求 生成的重定向响应
- 添加证书
- 使用 postman 验证 InfluxDB 线路协议
作为测试,我们 set-up WebClientRepeatingTLS 示例使用我们自己的 POST headers 和 body.
#include <NativeEthernet.h>
uint8_t mac[6];
void teensyMAC(uint8_t *mac) {
for (uint8_t by = 0; by < 2; by++) mac[by] = (HW_OCOTP_MAC1 >> ((1 - by) * 8)) & 0xFF;
for (uint8_t by = 0; by < 4; by++) mac[by + 2] = (HW_OCOTP_MAC0 >> ((3 - by) * 8)) & 0xFF;
Serial.printf("MAC: %02x:%02x:%02x:%02x:%02x:%02x\n", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
}
// initialize the library instance:
EthernetClient client;
const int port = 443;
char server[] = "influxdata.com";
//IPAddress server(192, 168, 1, 246);
String outputMSG = "measurementName,tagKey=tagValue fieldKey=1i";
unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds
const unsigned long postingInterval = 5 * 1000; // delay between updates, in milliseconds
void setup() {
teensyMAC(mac);
Serial.begin(9600);
while (!Serial) {
;
}
Serial.println("Initialize Ethernet with DHCP:");
if (Ethernet.begin(mac) == 0) {
Serial.println("Failed to configure Ethernet using DHCP");
if (Ethernet.hardwareStatus() == EthernetNoHardware) {
Serial.println("Ethernet shield was not found. Sorry, can't run without hardware. :(");
while (true) {
delay(1);
}
}
if (Ethernet.linkStatus() == LinkOFF) {
Serial.println("Ethernet cable is not connected.");
}
} else {
Serial.print(" DHCP assigned IP ");
Serial.println(Ethernet.localIP());
}
delay(1000);
}
void loop() {
if (client.available()) {
char c = client.read();
Serial.write(c);
}
if (millis() - lastConnectionTime > postingInterval) {
httpRequest();
}
}
void httpRequest() {
client.stop();
Serial.print("Content-Length: ");
Serial.println(outputMSG.length());
Serial.println("");
if (client.connect(server, port, true)) {
Serial.println("connecting to ");
Serial.print(server);
Serial.print(":");
Serial.println(port);
client.println("POST /api/v2/write?org=ORG_HERE&bucket=BUCKET_HERE&precision=s HTTP/1.1");
client.println("Host: https://eu-central-1-1.aws.cloud2.influxdata.com");
client.println("Authorization: Token <<TOKEN HERE>>");
client.println("Content-Type: text/plain");
client.print("Content-Length: ");
client.println(outputMSG.length());
client.println("Accept-Encoding: gzip, deflate, br");
client.println("Connection: keep-alive");
client.println();
client.println(outputMSG);
client.println();
lastConnectionTime = millis();
} else {
Serial.println("connection failed");
}
}
谁能帮助我们理解为什么 post 到 aws 没有通过?
干杯, 男孩
使用 EthernetWebServerSSL library in combination with theQNEthernet 库使 teensy 可以连接到 AWS 子域,因此允许它 post 到 Influxdb 数据库。