接口描述:调用本接口查询脚本在预部署环境运行的异常情况。
请求方式:post
请求路径:/icdn/udf-script/query-udf-script-exception
使用说明:单个用户一分钟限制调用10000次,并发不超过100。
请求参数说明(json):
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
domain | 是 | String | 域名必须属于当前用户且合法有效 | ctyun.cn | |
script_name | 是 | String | 函数脚本名 为2-64位的小写字母、数字、下划线组合,以小写字母、数字开头结尾 | lua_test |
返回参数说明:
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
statusCode | Integer | 状态码 | 100000 | |
returnObj | Object | 返回对象 | - | returnObj |
message | String | 结果简述 | 正确返回/参数不合法 | |
error | String | 错误码 | CDN_200002 | |
errorMessage | String | 错误详情 | 请求参数校验失败,参数domain为必填,且不能为空 |
表 returnObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
execution_error | Array of Objects | 返回运行异常信息数组 | - | execution_error |
表 execution_error
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
info | String | 异常内容 | 601: No such API: ctyun.resp.set_output123 | |
time | String | 运行异常的时间 | 2023-02-07T15:43:53+08:00 | |
rip | String | 下发机器 | 171.105.185.45 |
示例:
请求路径:https://cdnapi-global.ctapi.ctyun.cn/icdn/udf-script/query-udf-script-exception
请求参数:
{
"domain":"ctyun.cn",
"script_name":"lua_test"
}
返回结果:
{
"statusCode":100000,
"message":"正确返回",
"returnObj":{
"execution_error":[
{
"info":"601: No such API: ctyun.resp.set_output123",
"time":"2023-02-07T15:43:53+08:00",
"rip":"171.105.185.45"
}
]
}
}
错误码请参考:参数code和message含义