curl get请求加toekn
时间: 2023-10-10 18:15:15 浏览: 115
curl get post 请求总结
您可以使用curl命令发送带有token的GET请求。下面是一个示例:
```shell
curl -H "Authorization: Bearer your_token" https://example.com/api/endpoint
```
请将`your_token`替换为您的实际token,并将`https://example.com/api/endpoint`替换为您要发送请求的URL。这样,您就可以通过GET请求发送带有token的请求了。
阅读全文