EC600U_esp32_iap_uart/http
2024-02-05 17:39:56 +08:00
..
inc temp 2024-02-05 17:39:56 +08:00
CMakeLists.txt temp 2024-02-05 17:39:56 +08:00
http_demo.c temp 2024-02-05 17:39:56 +08:00
http_post_demo.c temp 2024-02-05 17:39:56 +08:00
http_put_demo.c temp 2024-02-05 17:39:56 +08:00
https_get_demo.c temp 2024-02-05 17:39:56 +08:00
readme.md temp 2024-02-05 17:39:56 +08:00

http and https examples

This directory is for http/https programming examples. They are meant to show some simple steps on how you can build your own application to take full advantage of http/https.

##文件例程说明

http_post_demo.c

该例程主要是使用http post方法,发送json字符串数据请求到服务器以及应答打印输出过程本例程主要展示使用post方法、 http头配置、鉴权、body体输入等

http_put_demo.c

该例程主要使用http put方法发送文件到服务器并将服务器返回数据保存到文件中本例程主要展示使用put方法、 http头配置、文件上传等

https_get_demo.c

该例程主要使用https get方法发送json字符串数据请求到服务器以及应答打印输出过程本例程主要展示https无认证、 单向认证、 双向认证等