httpclient/README.md

18 lines
343 B
Markdown
Raw Normal View History

2024-05-24 12:25:11 +08:00
# httpclient
2024-05-24 12:44:08 +08:00
## 库作用
- 对第三方接口发起请求
## 依赖基础库
- [resty](https://github.com/go-resty/resty)
## 配置说明
2024-05-31 18:00:24 +08:00
## 默认配置
- AllowGetMethodPayload : 允许GET请求带Body, 默认值 **`true`** , 如需关闭, 可通过 HttpClient.GetRestyClient().SetAllowGetMethodPayload(false) 关闭
2024-05-24 12:44:08 +08:00
## 使用方式