wechat_query_status
Retrieve the publishing status and statistics for articles on WeChat Official Accounts by providing the message ID, AppID, and AppSecret.
Instructions
查询文章发布状态和统计数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | 微信公众号AppID | |
appSecret | Yes | 微信公众号AppSecret | |
msgId | Yes | 消息ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "微信公众号AppID",
"type": "string"
},
"appSecret": {
"description": "微信公众号AppSecret",
"type": "string"
},
"msgId": {
"description": "消息ID",
"type": "string"
}
},
"required": [
"msgId",
"appId",
"appSecret"
],
"type": "object"
}