人脸识别服务 FRS-返回结果:响应消息体

时间:2023-11-01 16:19:39

响应消息体

响应消息体通常以结构化格式返回,与响应消息头中Content-type对应,传递除响应消息头之外的内容。

对于人脸检测接口,返回如下消息体。

{  "faces": [    {      "bounding_box": {        "width": 174,        "top_left_y": 37,        "top_left_x": 22,        "height": 174      },      "attributes": {        "age": 35,        "quality": {           "total_score": 0.5869140625,           "blur": 0.385498046875,           "pose": 0.3349609375,           "occlusion": 0.392333984375,           "illumination": 0.3408203125        },         "expression": {           "type": "happy",           "probability": 0.74        }      }    }  ]}

当接口调用出错时,会返回错误码及错误信息说明,错误响应的Body体格式如下所示。

{  "error_code": "FRS.0019",  "error_msg": "The service has not been subscribed."}

其中,error_code表示错误码,error_msg表示错误描述信息,具体请参见错误码

support.huaweicloud.com/api-face/face_02_0005.html