EC600U_esp32_iap_uart/http/readme.md
2024-02-05 17:39:56 +08:00

18 lines
894 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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无认证、
单向认证、 双向认证等`