doc: update

This commit is contained in:
hugy 2023-06-01 08:46:18 +08:00
parent 4f33d7bc34
commit f36f838726

View File

@ -39,7 +39,7 @@
60.获取群/群成员详情 60.获取群/群成员详情
61.撤回消息 61.撤回消息
62.发送公众号消息 62.发送公众号消息
63.转发公众号消息
### 接口文档: ### 接口文档:
@ -1753,7 +1753,7 @@
> 撤回消息,有时间限制。 > 撤回消息,有时间限制。
###### 接口地址 ###### 接口地址
> [/api/?type=60](/api/?type=61) > [/api/?type=61](/api/?type=61)
###### HTTP请求方式 ###### HTTP请求方式
> POST JSON > POST JSON
@ -1793,7 +1793,7 @@
> 公众号文章分享/转发的功能 > 公众号文章分享/转发的功能
###### 接口地址 ###### 接口地址
> [/api/?type=60](/api/?type=61) > [/api/?type=62](/api/?type=62)
###### HTTP请求方式 ###### HTTP请求方式
> POST JSON > POST JSON
@ -1836,3 +1836,42 @@
``` javascript ``` javascript
{"code":0,"result":"OK"} {"code":0,"result":"OK"}
``` ```
#### 63.转发公众号消息**
###### 接口功能
> 转发收到的公众号的文章
###### 接口地址
> [/api/?type=63](/api/?type=63)
###### HTTP请求方式
> POST JSON
###### 请求参数
|参数|必选|类型|说明|
|---|---|---|---|
|msgId|string|收到的消息msgId,type=49|
|wxid|string|接收人wxid|
###### 返回字段
|返回字段|字段类型|说明 |
|---|---|---|
|code|int|返回状态,1成功, 非0失败|
|result|string|成功提示|
###### 接口示例
入参:
``` javascript
{
"msgId": "123456456456",
"wxid": "filehelper"
}
```
响应:
``` javascript
{"code":0,"result":"OK"}
```