# pushAppMsg

向 WMPF 推送消息

# 请求地址

POST https://api.weixin.qq.com/wxa/business/runtime/pushappmsg?access_token=ACCESS_TOKEN

# URL 参数

属性 类型 是否必填 说明
access_token string 接口调用凭证,应该使用移动应用 AppID(即 LauncherAPP 的 AppID )或小程序的身份调用

# POST Body 参数

请求的 JSON 数据包

属性 类型 是否必填 说明
msg string 推送消息内容,大小不超过 5 KB
push_token string 从 WMPF 获取的 pushToken

# 返回值

返回的 JSON 数据

属性 类型 说明
errcode number 错误码
errmsg string 错误信息

errcode 的合法值

说明
0 成功
40101 参数错误
45002 推送内容长度超过限制
48012 token 无效

最终应用上收到的消息内容的 JSON 数据包

属性 类型 是否必填 说明
msg string 推送消息内容,大小不超过 5 KB
appid string 小程序标识

# 请求数据示例

{
  "msg": "your msg",
  "push_token": "your push token"
}

# 返回数据示例

{
  "errcode": 0,
  "errmsg": "ok"
}

# 注意:

  • 调用该接口时还需要获取 access_token ,获取方式详见此处