根据issue获取crashHash列表 (支持PC)
GET
{{env}}/uniform/openapi/crashList根据issue获取crashHash列表(支持PC)
新加坡: https://crashsight.wetest.net
以上示例中的前缀域名为示例域名,实际使用时以实际环境为准。
下载python代码示例:(移动端)https://crashsight-docs-1258344700.cos.ap-shanghai.myqcloud.com/openapi/crashsight_openapi_v1_crashList.py
请求参数
Body 参数application/json
appId
string
产品id
crashDataType
string
必需
默认undefined
start
integer
必需
从第几页开始,默认0
searchType
string
默认detail
exceptionTypeList
string
必需
类型 崩溃分析(Crash%2CNative%2CExtensionCrash) ANR分析(ANR) 错误分析(AllCatched%2CUnity3D%2CLua%2CJS)
pid
integer
默认 10
platformId
integer
必需
平台id,1是安卓,2是ios,10是PC
issueId
string
问题id
rows
integer
每一页条数
version
string
必需
否 可选,需要过滤的版本号
示例1
{
"appId": "7786d1a114",
"crashDataType": "undefined",
"start": 0,
"searchType": "detail",
"exceptionTypeList": "",
"pid": 1,
"platformId": 1,
"issueId": "F3B213561B26E0C45A6C397CD77668D9",
"rows": 10,
"version": ""
}
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
statusCode
integer
必需
message
null
必需
reqSendstamp
integer
必需
rspReceivedTiamp
integer
必需
rspSendTimestamp
integer
必需
numFound
integer
必需
issueList
array[string]
必需
crashIdList
array[string]
必需
crashDatas
object
必需
崩溃详情 crashDatas包含dumpid(dump文件域名 + dumpid + ".dmp.gz ")
337A2BABD0DBA145C462625FD26BD349
object
必需
detailDatas
null
必需
tagInfoList
null
必需
tagList
null
必需
crashNums
integer
必需
anrNums
integer
必需
errorNums
integer
必需
scrollId
null
必需
示例
{
"statusCode": 0,
"message": null,
"reqSendstamp": 0,
"rspReceivedTiamp": 0,
"rspSendTimestamp": 0,
"numFound": 1,
"issueList": [],
"crashIdList": [
"337A2BABD0DBA145C462625FD26BD349"
],
"crashDatas": {
"337A2BABD0DBA145C462625FD26BD349": {
"productVersion": "1297633",
"dumpId": "A9179A653872743CD2A11891B9120",
"model": "2c-f0-5d-15-4b-c3",
"id": "337A2BABD0DBA145C462625FD26BD349",
"uploadTime": "2021-06-17 12:53:22",
"crashId": "337a2babd0dba145c462625fd26bd349",
"osVer": "Microsoft Windows 10-sp0.0",
"deviceId": "[secret_info]",
"userId": "[secret_info]"
}
},
"detailDatas": null,
"tagInfoList": null,
"tagList": null,
"crashNums": 0,
"anrNums": 0,
"errorNums": 0,
"scrollId": null
}
最后修改时间: 1 年前