微信小程序 运维中心·getJsErrSearch

operation.getJsErrSearch

本接口应在服务器端调用,详细说明参见服务端API。

错误查询

请求地址

POST https://api.weixin.qq.com/wxaapi/log/jserr_search?access_token=ACCESS_TOKEN

请求参数

属性 类型 默认值 必填 说明
access_token string 接口调用凭证
errmsg_keyword string 错误关键字
type number 查询类型,1 为客户端, 2为服务直达
client_version string 客户端版本,可以通过 getVersionList 接口拉取, 不传或者传空代表所有版本
start_time number 开始时间
end_time number 结束时间
start number 分页起始值
limit number 一次拉取最大值

请求示例

{
  "errmsg_keyword":"",
  "type":1,
  "client_version": "",
  "start_time": 1587021734,
  "end_time": 1587626534,
  "start": 1,
  "limit": 1
  "sceneDesc": "测试数据"
}

返回的 JSON 数据包

属性 类型 说明
errcode number 错误码
errmsg string 错误信息
results Array.<Object> 错误列表
total number 总条数

响应示例

{
  "results": [
      {
          "time": 1587571200,
          "client_version": "7.0.14",
          "app_version": "2.8.21",
          "version_error_cnt": 1,
          "total_error_cnt": 1,
          "errmsg": "setBackgroundAudioState:fail:src is null\nError: setBackgroundAudioState:fail:src is null\n    at fail (https://lib/WASubContext.js:2:876609)\n    at Object.fail (https://lib/WASubContext.js:2:115688)\n    at b (https://lib/WASubContext.js:2:431732)\n    at https://lib/WASubContext.js:2:432886\n"
      }
  ],
  "total": 91,
  "errcode": 0
}

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《微信小程序 运维中心·getJsErrSearch》
文章链接:https://zhuji.vsping.com/310189.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。