# HTTP请求协议
仅支持 HTTP
,暂不支持 HTTPS。
仅支持 POST
,暂不支持 GET。
请求地址和 protobuf 协议一致,例如 http://127.0.0.1:11111/trade/TradeLogin (也支持 /TradeLoginRequest 和 /TradeLoginRequestMsgType)
请求参数格式为 JSON,保存在 Content。
POST /trade/xxxRequest HTTP/1.1
Host: 127.0.0.1:11111
Content-Type: application/json
Content-Length: 123
{"timeout_sec":10,"params":{"key":"value"}}
- 请求参数格式(JSON)
{
"timeout_sec": 10,
"params": {
"key": "value"
}
}
- 请求返回格式(JSON)
{
"ok": true,
"err": "错误信息",
"data": {
"key": "value"
}
}