更新人脸
接口描述
根据用户ID,更新一个人脸集合下用户的人脸信息。
请求说明
HTTP 方法:
POST
请求 URL:
/ai-cloud-imgstore/img/person/update
Header如下:
参数名称 | 值 |
Content-Type | application/json;charset=UTF-8 |
Body中放置请求参数,参数详情如下:
请求参数:
参数名称 | 数据类型 | 参数描述 |
appKey | String | 应用生成的appkey |
sign | String | 签名 |
nonceStr | String | 随机字符串 |
libraryId | String | 图库标识 |
personId | Int | 用户编号 |
image | String | base64图片,建议上传小于3M, 像素在4000*3000 以内的图片 |
返回说明
返回参数:
返回值名称 | 类型 | 描述 |
---|---|---|
code | Int | 返回结果,0表示成功,非0为对应错误号 |
success | Boolean | 是否成功 |
message | String | 返回详细信息 |
返回示例:
{
"code": 0,
"data": {
"imgAge": 40,
"imageUrl": "https://cloudwalk-admin......2b55a187.jpg",
"faceQuality": 0.4683757,
"imgGender": -1,
"personId": 10013
},
"success": true,
"message": "成功"
}