查询预部署环境的编译结果 接口描述:查询lua脚本预部署环境的编译信息。 请求方式:post 请求路径:/icdn/udfscript/queryudfscriptcompileresult 使用说明:单个用户一分钟限制调用10000次,并发不超过100。 请求参数说明(json): 参数 是否必填 参数类型 说明 示例 下级对象 domain 是 String 域名必须属于当前用户且合法有效 ctyun.cn scriptname 是 String 为264位的小写字母、数字、下划线组合,以小写字母、数字开头结尾 luatest 返回参数说明: 参数 参数类型 说明 示例 下级对象 statusCode Integer 状态码 100000 returnObj Object 返回对象 returnObj message String 结果简述 正确返回/参数不合法 error String 错误码 CDN200002 errorMessage String 错误详情 请求参数校验失败,参数domain为必填,且不能为空 表 returnObj 参数 参数类型 说明 示例 下级对象 compiledresult Array of Objects 返回结果数组 compiledresult 表 compiledresult 参数 参数类型 说明 示例 下级对象 info String 编译结果 success time String 编译完成时间 20221104T18:49:31+08:00 rip String 下发机器 1.1.10.0 示例: 请求路径: 请求参数: { "domain":"ctyun.cn", "scriptname":"luatest" } 返回结果: { "statusCode": 100000, "message": "正确返回", "returnObj": { "compiledresult": [ { "info": "success", "time": "20221104T18:49:31+08:00", "rip": "1.1.10.0" }, { "info": "success", "time": "20221104T19:05:43+08:00", "rip": "1.1.158.0" }, { "info": "success", "time": "20230404T14:21:50+08:00", "rip": "1.11.185.45" } ] } } 错误码请参考:参数code和message含义