18 lines
894 B
Markdown
18 lines
894 B
Markdown
|
# 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无认证、
|
|||
|
单向认证、 双向认证等`
|
|||
|
|