curl发送HTTP请求 Wang QingBin Linux 发布于:2020年5月20日 更新于:2021年6月8日 字数:234字 时长:1分钟 使用curl发送HTTP请求,用于简单验证接口连接性。 GET 请求示例123456789101112131415# GET请求 -icurl -i <url># 返回示例:# HTTP/1.0 200 OK# Content-Type: application/json# Content-Length: 151# Server: Werkzeug/0.8.3 Python/2.7.3# Date: Mon, 20 May 2013 05:21:50 GMT## {# "data": {# "description": "Need to find a good Python tutorial on the web",# },# "code": 200# } POST 请求示例1234567891011121314# POST请求示例 -icurl -i -H "Content-Type: application/json" -X POST -d '{"data":"data"}' <url># HTTP/1.0 201 Created# Content-Type: application/json# Content-Length: 104# Server: Werkzeug/0.8.3 Python/2.7.3# Date: Mon, 20 May 2013 05:56:21 GMT## {# "data": {# "description": "Need to find a good Python tutorial on the web",# },# "code": 200# } curl 带密码请求123456789101112131415# -u username:password -i urlcurl -u miguel:python -i <url># HTTP/1.0 200 OK# Content-Type: application/json# Content-Length: 316# Server: Werkzeug/0.8.3 Python/2.7.3# Date: Mon, 20 May 2013 06:46:45 GMT## {# "data": {# "description": "Need to find a good Python tutorial on the web",# },# "code": 200# } 向博主反馈问题 更新于:2021年6月8日 Linux curl CentOS 7 安装 JDK CentOS 7 安装 JDK1.8 并配置环境变量 yum安装jdk1yum install java-1.8.0-openjdk* 配置环境变量123456789vim ~/.bash... ssh-keygen ssh-keygen简单用法本文主要针对ssh-keygen配置GitHub Pages使用ssh免密部署ssh秘钥登录特点:1.安全;2.免输密码。 安装1# ssh-keygen为ssh...