调用PCContextKeysService接口查看Context包含的取值。
请求参数
Query
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|
Action | String | 是 | PCContextKeys | 请求名称 |
Version | String | 是 | 2022-10-28 | 请求版本 |
Body
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|
app_id | i32 | 是 | 12345 | App ID |
start_time | i32 | 是 | 1656288235 | 开始时间,单位为秒 |
end_time | i32 | 是 | 1656288235 | 结束时间,单位为秒 |
ev_type | string | 否 | "" | 崩溃类型,暂时只有pc_crash |
key | string | 否 | context_key | context的key值 |
region | string | 否 | cn | 请求区域,默认cn |
返回参数
参数 | 类型 | 示例值 | 描述 |
---|
data | array of data | [ { "name": "app_version", "description": "app版本", "displayTemplate": "Symbol" }] | 可用key列表 |
errmsg | string | "" | 错误信息,成功为空 |
errno | i32 | 200 | 错误码,成功为200 |
data
参数 | 类型 | 示例值 | 描述 |
---|
name | string | key1 | 字段名 |
description | string | 中文 | 中文描述 |
displayTemplate | string | Symbol | 筛选方式SymbolSimpleSymbol |
示例
请求示例
POST /?Action=PCContextKeys&Version=2022-10-28
{
"app_id": 12345,
"start_time": 1656288235,
"end_time": 1656288235,
"region": "cn",
"key": "context_key",
"ev_type": ""
}
正常返回示例
{
"errno": 200,
"errmsg": "",
"data": [
{
"name": "app_version",
"description": "app版本",
"displayTemplate": "Symbol"
}
]
}
异常返回示例
{
"ResponseMetadata": {
"RequestId": "201806041104200100100232280022D30",
"Action": "PCContextKeys",
"Version": "2022-10-28",
"Service": "***",
"Region": "cn-north-1",
"Error": {
"Code": "200000",
"Message": "参数异常"
}
}
}