ESP-IDF HTTP POST哀求发送音频-启明云端乐鑫代理商
ESP32 HTTP POST哀求发送音频ESP32中 有 HTTP 相干的哀求 demo,但是 demo 中只是简朴的 HTTP headers 加上 body。如果服务器对 POST 哀求有要求,好比数据以 key-value 的情势传输,那么服务器会无法正常处理哀求。
POST哀求
什么是 POST
POST 是 HTTP 的哀求方法,主要用于向指定资源提交数据进行处理哀求(例如提交表单或者上传文件),数据被包含在哀求体中。POST哀求大概会导致新的资源的建立和/或已有资源的修改。
Post哀求一般由哀求行、哀求头和哀求体构成。下面列举一段简朴的 post 哀求数据,并加以分析。
POST /api/v1/resource HTTP/1.1
Host: example.com
Content-Type: application/json
Content-Length: 56
{
"name": "John Doe",
"email": "john.doe@example.com"
}
POST /api/v1/resource HTTP/1.1
#这一部分是请求行,包含了请求的类型(POST)、请求的路径(/api/v1/resource)以及使用的 HTTP 协议版本(HTTP/1.1)。
Host: example.com
Content-Type: application/json
Content-Length: 56
#这一部分是请求头,提供了关于请求的附加信息。包括目标主机(Host)、内容类型(Content-Type)和请求体的长度(Content-Length)。
注意:哀求头和哀求体中间有个空行!
{
"name": "John Doe",
"email": "john.doe@example.com"
}
#这一部分是请求的主体部分,包含了要发送的数据(在这个例子中是JSON格式的用户信息)。
POST哀求发送音频
通过 postman 工具,在获取哀求的数据内容后,把哀求行、哀求头、哀求体拼接。
其中,须要传输的音频通过 (SPIFFS 文件系统 - ESP32 - — ESP-IDF 编程指南 latest 文档)系统读写,
void http_send_mp3(){
//读取音频文件
//...
long file_size = ftell(file);
char *file_content = malloc(file_size);
//file_content 是获取的音频数据, file_size 是音频数据的长度
fread(file_content, 1, file_size, file);
//...
esp_http_client_config_t config = {
.url = POST_URL,
.event_handler = http_event_handler,
.method = HTTP_METHOD_POST,
};
esp_http_client_handle_t client = esp_http_client_init(&config);
char *post_data = malloc(file_size + 512);
memset(post_data, 0, file_size + 512);
memcpy(post_data, "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"file\"; filename=\"test.mp3\"\r\nContent-Type: audio/mpeg\r\n\r\n", 135);
memcpy(post_data + 135, file_content, file_size);
memcpy(post_data + 135 + file_size, "\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--\r\n", 45);
esp_http_client_set_post_field(client, post_data, 180 + file_size);
esp_err_t err = esp_http_client_perform(client);
esp_http_client_cleanup(client);
}
}
//name=“file”,file即为服务器需要post请求携带的key。
确保拼接的格式与 postman 中的报文同等,如遇服务器无法正常处理的征象,可以用 wireshark 或者其他抓包软件抓包,看看 esp32 发送的 POST 报文 body 中的数据格式跟用 POSTMAN 发送的报文同等。
参考链接
https://github.com/espressif/esp-idf/tree/master/examples/protocols/esp_http_client
https://docs.espressif.com/projects/esp-idf/zh_CN/latest/esp32/api-reference/protocols/esp_http_server.html#http
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]