POST esp8266
时间: 2023-08-10 19:09:25 浏览: 86
ESP8266可以通过HTTP POST方法发送请求。具体步骤如下:
1. 首先需要连接到WiFi网络,可以使用ESP8266的WiFi库进行连接。
2. 然后需要创建一个HTTP客户端,可以使用ESP8266的HTTPClient库。
3. 设置HTTP请求的URL、请求头、请求体等参数。
4. 发送HTTP POST请求,可以使用HTTPClient库的post()方法。
5. 获取HTTP响应,可以使用HTTPClient库的getString()或getStream()方法。
下面是一个简单的示例代码:
```
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
const char* ssid = "your_SSID";
const char* password = "your_PASSWORD";
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(100);
Serial.println("Connecting to WiFi...");
}
Serial.println("Connected to WiFi");
}
void loop() {
HTTPClient http;
http.begin("http://example.com/api/data"); // 设置请求的URL
http.addHeader("Content-Type", "application/json"); // 设置请求头
String requestBody = "{\"name\":\"John\",\"age\":30}"; // 设置请求体
int httpResponseCode = http.POST(requestBody); // 发送HTTP POST请求
if (httpResponseCode > ) {
String response = http.getString(); // 获取HTTP响应
Serial.println("HTTP response: " + response);
} else {
Serial.println("HTTP request failed");
}
http.end();
delay(500);
}
```
阅读全文