doc: 发送文件

This commit is contained in:
hugy 2023-07-06 21:20:14 +08:00
parent 53a7938335
commit a9029e4a3d

View File

@ -164,7 +164,8 @@ data 接口返回的数据
|返回字段|字段类型|说明 |
|---|---|---|
|code|int|返回状态,不为0成功, 0失败|
|result|string|成功提示|
|msg|string|成功提示|
|data|object|null|
###### 接口示例
@ -474,4 +475,42 @@ enableHttp=0时使用ipport的tcp服务回传消息。
],
"msg": "success"
}
```
```
#### 8.发送文件消息**
###### 接口功能
> 发送文件消息
###### 接口地址
> [/api/sendFileMsg](/api/sendFileMsg)
###### HTTP请求方式
> POST JSON
###### 请求参数
|参数|必选|类型|说明|
|---|---|---|---|
|wxid |true |string| 接收人wxid |
|filePath|true |string|文件绝对路径|
###### 返回字段
|返回字段|字段类型|说明 |
|---|---|---|
|code|int|返回状态,不为0成功, 0失败|
|msg|string|成功提示|
|data|object|null|
###### 接口示例
入参:
``` javascript
{
"wxid": "filehelper",
"filePath": "c:\\test.zip"
}
```
响应:
``` javascript
{"code":345686720,"msg":"success","data":null}
```