乐鑫ESP32 https post请求

2024-02-07 08:59
文章标签 https 请求 post esp32 乐鑫

本文主要是介绍乐鑫ESP32 https post请求,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

项目中遇到关于https的应用,例程中只有关于https的get,没有post,原以为只需要简单改动一下就能使用,但是实际调试过程中,发现不能用。 现在记录一下,防止忘记。
原例程是参照https_request_example_main.c文件中

https get

void app_main(void)
{ESP_ERROR_CHECK( nvs_flash_init() );ESP_ERROR_CHECK(esp_netif_init());ESP_ERROR_CHECK(esp_event_loop_create_default());/* This helper function configures Wi-Fi or Ethernet, as selected in menuconfig.* Read "Establishing Wi-Fi or Ethernet Connection" section in* examples/protocols/README.md for more information about this function.*/ESP_ERROR_CHECK(example_connect());xTaskCreate(&https_get_task, "https_get_task", 8192, NULL, 5, NULL);
}

这个是主函数。其中的
ESP_ERROR_CHECK( nvs_flash_init() );
ESP_ERROR_CHECK(esp_netif_init());
ESP_ERROR_CHECK(esp_event_loop_create_default());
ESP_ERROR_CHECK(example_connect());
分别做了flash初始化,网络初始化,回调事件创建,以及网络连接。
如果已经建立了网络连接可以只调用ESP_ERROR_CHECK(esp_event_loop_create_default());
xTaskCreate(&https_get_task, “https_get_task”, 8192, NULL, 5, NULL);
这两个,就可以直接进行https的相关操作。

static void https_get_task(void *pvParameters)
{char buf[512];int ret, len;while(1) {esp_tls_cfg_t cfg = {.crt_bundle_attach = esp_crt_bundle_attach,};struct esp_tls *tls = esp_tls_conn_http_new(WEB_URL, &cfg);if(tls != NULL) {ESP_LOGI(TAG, "Connection established...");} else {ESP_LOGE(TAG, "Connection failed...");goto exit;}size_t written_bytes = 0;do {ret = esp_tls_conn_write(tls,REQUEST + written_bytes,strlen(REQUEST) - written_bytes);if (ret >= 0) {ESP_LOGI(TAG, "%d bytes written", ret);written_bytes += ret;} else if (ret != ESP_TLS_ERR_SSL_WANT_READ  && ret != ESP_TLS_ERR_SSL_WANT_WRITE) {ESP_LOGE(TAG, "esp_tls_conn_write  returned 0x%x", ret);goto exit;}} while(written_bytes < strlen(REQUEST));ESP_LOGI(TAG, "Reading HTTP response...");do{len = sizeof(buf) - 1;bzero(buf, sizeof(buf));ret = esp_tls_conn_read(tls, (char *)buf, len);if(ret == ESP_TLS_ERR_SSL_WANT_WRITE  || ret == ESP_TLS_ERR_SSL_WANT_READ)continue;if(ret < 0){ESP_LOGE(TAG, "esp_tls_conn_read  returned -0x%x", -ret);break;}if(ret == 0){ESP_LOGI(TAG, "connection closed");break;}len = ret;ESP_LOGD(TAG, "%d bytes read", len);/* Print response directly to stdout as it is read */for(int i = 0; i < len; i++) {putchar(buf[i]);}} while(1);exit:esp_tls_conn_delete(tls);putchar('\n'); // JSON output doesn't have a newline at endstatic int request_count;ESP_LOGI(TAG, "Completed %d requests", ++request_count);for(int countdown = 10; countdown >= 0; countdown--) {ESP_LOGI(TAG, "%d...", countdown);vTaskDelay(1000 / portTICK_PERIOD_MS);}ESP_LOGI(TAG, "Starting again!");}
}
https_get_task()函数中,esp_tls_conn_http_new()是通过url建立https的连接。esp_tls_conn_write()完成传输,即通过TCP协议层传输https的header

http的协议格式
例程中的协议头是这样的。

static const char *REQUEST = "GET " WEB_URL " HTTP/1.0\r\n""Host: "WEB_SERVER"\r\n""User-Agent: esp-idf/1.0 esp32\r\n""\r\n";

这里的WEB_SERVER,WEB_URL是用define定义的。(有一点需要注意的是,这种定义方式在Visual Studio中的C/C++会报错。)
下面的ret = esp_tls_conn_write(tls,
REQUEST + written_bytes,
strlen(REQUEST) - written_bytes);
是循环将header传输到对应的服务器上。
写完以后,开始等待http的回复。
后面进行回复读取:
bzero(buf, sizeof(buf));
ret = esp_tls_conn_read(tls, (char *)buf, len);
bzero()类似于memset(),不过在http当中用的比较多。

https post

但是上面的例程是进行https get请求的,若进行post请求呢?
大多数情况下,post请求都是需要上传参数的。不管是text,xml,还是json。
body应该怎么填的?一开始我是这样做的。

const char *REQUEST = "POST " WEB_URL " HTTP/1.0\r\n""Host: " WEB_SERVER "\r\n""User-Agent: Mozilla/5.0\r\n""Content-Type:application/json\r\n""Accept-Encoding: gzip, deflate\r\n""Connection:keep-alive\r\n""Content-Length:360\r\n""Accept:*/*\r\n""\r\n";"{\r\n	\"appId\":	\"intelligent_cabinet\",\r\n	\"requestId\":	\"01831016-b18c-4a1e-a571\",\r\n	\"version\":	\"2.0\",\r\n	\"timestamp\":	\"1617325383000\",\r\n	\"sign\":	\"ZDJlNGJmZDQ4Y2MyOWNmOTU1ZDcyNTRkNzc3NDQwMzQwNzU1MGY2MQ==\"\r\n}";

格式是按照http的格式填充的,实际测试当中,发现body请求体并没有传到服务器。
后问了乐鑫的FAE,提示可以参考esp_http_client_example.c例程测试。
但是该例程当中也有不少的坑。
首先,这个例程当中包含多个请求方式,并且相当杂乱。

static void http_test_task(void *pvParameters)
{http_rest_with_url();http_rest_with_hostname_path();
#if CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTHhttp_auth_basic();http_auth_basic_redirect();
#endifhttp_auth_digest();http_relative_redirect();http_absolute_redirect();https_with_url();https_with_hostname_path();http_redirect_to_https();http_download_chunk();http_perform_as_stream_reader();https_async();https_with_invalid_url();http_native_request();ESP_LOGI(TAG, "Finish http example");vTaskDelete(NULL);
}

开始使用这个https_with_url();设置了一下,发现用不了,后面又调整了几次,终于发送成功了。
改的例程如下:

void https_with_url(void)
{char *outJson=NULL;char output_buffer[MAX_HTTP_OUTPUT_BUFFER] = {0};char request[512]={'\0'};outJson=rebuild_json();sprintf(request,"%s",outJson);free(outJson);esp_netif_init();esp_event_loop_create_default();esp_http_client_config_t config = {.url ="https://daily-robot.ele.me/bdi.robot_scheduler/v2/openapi/cater/order/prepared",.event_handler = http_event_handler,};esp_http_client_handle_t client = esp_http_client_init(&config);esp_http_client_set_method(client, HTTP_METHOD_POST);esp_http_client_set_header(client, "Content-Type", "application/json");esp_err_t err = esp_http_client_open(client, strlen(request));printf("https_with_url request =%s\n",request);if (err != ESP_OK) {ESP_LOGE(TAG, "Failed to open HTTP connection: %s", esp_err_to_name(err));} else {int wlen = esp_http_client_write(client, request, strlen(request));if (wlen < 0) {ESP_LOGE(TAG, "Write failed");}esp_err_t err = esp_http_client_perform(client);if (err == ESP_OK) {ESP_LOGI(TAG, "HTTPS Status = %d, content_length = %d",esp_http_client_get_status_code(client),esp_http_client_get_content_length(client));} else {ESP_LOGE(TAG, "Error perform http request %s", esp_err_to_name(err));}}esp_http_client_cleanup(client);
}

http回复的可以在http_event_handler()函数中的
case HTTP_EVENT_ON_DATA:
后面打印一下:

case HTTP_EVENT_ON_DATA:ESP_LOGD(TAG, "HTTP_EVENT_ON_DATA, len=%d", evt->data_len);/**  Check for chunked encoding is added as the URL for chunked encoding used in this example returns binary data.*  However, event handler can also be used in case chunked encoding is used.*/if (!esp_http_client_is_chunked_response(evt->client)) {// If user_data buffer is configured, copy the response into the bufferif (evt->user_data) {memcpy(evt->user_data + output_len, evt->data, evt->data_len);} else {if (output_buffer == NULL) {output_buffer = (char *) malloc(esp_http_client_get_content_length(evt->client));output_len = 0;if (output_buffer == NULL) {ESP_LOGE(TAG, "Failed to allocate memory for output buffer");return ESP_FAIL;}}memcpy(output_buffer + output_len, evt->data, evt->data_len);}output_len += evt->data_len;}printf("output_buffer=%s\n",output_buffer);break;

可以看收到了回复信息
postman测试回复

跟postman上面的测试结果一致,后面就可以添加自己的数据处理拉,完成。
源码在这里:乐鑫ESP32 http post请求源码修改

这篇关于乐鑫ESP32 https post请求的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/687206

相关文章

消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法

消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法   消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法 [转载]原地址:http://blog.csdn.net/x605940745/article/details/17911115 消除SDK更新时的“

Java http请求示例

使用HttpURLConnection public static String httpGet(String host) {HttpURLConnection connection = null;try {URL url = new URL(host);connection = (HttpURLConnection) url.openConnection();connection.setReq

3.比 HTTP 更安全的 HTTPS(工作原理理解、非对称加密理解、证书理解)

所谓的协议 协议只是一种规则,你不按规则来就无法和目标方进行你的工作 协议说白了只是人定的规则,任何人都可以定协议 我们不需要太了解细节,这些制定和完善协议的人去做的,我们只需要知道协议的一个大概 HTTPS 协议 1、概述 HTTPS(Hypertext Transfer Protocol Secure)是一种安全的超文本传输协议,主要用于在客户端和服务器之间安全地传输数据

10 Source-Get-Post-JsonP 网络请求

划重点 使用vue-resource.js库 进行网络请求操作POST : this.$http.post ( … )GET : this.$http.get ( … ) 小鸡炖蘑菇 <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-w

Unity Post Process Unity后处理学习日志

Unity Post Process Unity后处理学习日志 在现代游戏开发中,后处理(Post Processing)技术已经成为提升游戏画面质量的关键工具。Unity的后处理栈(Post Processing Stack)是一个强大的插件,它允许开发者为游戏场景添加各种视觉效果,如景深、色彩校正、辉光、模糊等。这些效果不仅能够增强游戏的视觉吸引力,还能帮助传达特定的情感和氛围。 文档

项目一(一) HttpClient中的POST请求和GET请求

HttpClient中的POST请求和GET请求 一、HttpClient简述 HttpClient是Apache Jakarta Common下的子项目,用来提供高效的、最新的、功能丰富的支持HTTP协议的客户端编程工具包,并且它支持HTTP协议最新的版本和建议。HttpClient已经应用在很多的项目中,比如Apache Jakarta上很著名的另外两个开源项目Cactus和HTMLU

Spring Boot 注解探秘:HTTP 请求的魅力之旅

在SpringBoot应用开发中,处理Http请求是一项基础且重要的任务。Spring Boot通过提供一系列丰富的注解极大地简化了这一过程,使得定义请求处理器和路由变得更加直观与便捷。这些注解不仅帮助开发者清晰地定义不同类型的HTTP请求如何被处理,同时也提升了代码的可读性和维护性。 一、@RequestMapping @RequestMapping用于将特定的HTTP请求映射到特定的方法上

在struts.xml中,如何配置请求转发和请求重定向!

<span style="font-size:18px;"><span style="white-space:pre"> </span><!--<strong>下面用请求转发action </strong>,<strong>这样过去id不会丢</strong>,如果用重定向的话,id会丢 --><result name="updatePopedom"<span style="color:#ff00

通过Ajax请求后台数据,返回JSONArray(JsonObject),页面(Jquery)以table的形式展示

点击“会商人员情况表”,弹出层,显示一个表格,如下图: 利用Ajax和Jquery和JSONArray和JsonObject来实现: 代码如下: 在hspersons.html中: <!DOCTYPE html><html><head><meta charset="UTF-8"><title>会商人员情况表</title><script type="text/javasc

HTTP协议 HTTPS协议 MQTT协议介绍

目录 一.HTTP协议 1. HTTP 协议介绍 基本介绍: 协议:  注意: 2. HTTP 协议的工作过程 基础术语: 客户端: 主动发起网络请求的一端 服务器: 被动接收网络请求的一端 请求: 客户端给服务器发送的数据 响应: 服务器给客户端返回的数据 HTTP 协议的重要特点: 一发一收,一问一答 注意: 网络编程中,除了一发一收之外,还有其它的模式 二.HTT