curl发起httprequest请求
时间: 2023-11-12 09:57:04 浏览: 141
Linux C/C++发起http请求示例
curl是一个命令行工具,可以用来发起http请求。它支持多种协议,包括HTTP、HTTPS、FTP等。在发起http请求时,可以使用curl指定请求的方法、请求头、请求参数等信息。
发起GET请求:
```
curl http://example.com
```
发起POST请求:
```
curl -X POST http://example.com -d 'param1=value1¶m2=value2'
```
指定请求头:
```
curl -H "Content-Type: application/json" http://example.com
```
指定认证信息:
```
curl -u username:password http://example.com
```
阅读全文