最后编辑于2020-01
String url = new StringBuilder(BASE_URL).append("faceverify").toString();
Map map = new HashMap<>();
map.put("image", image);
map.put("image_type", "BASE64");
String param = GsonUtils.toJson(map);
String result = HttpUtil.post(url, accessToken, "application/json", param);
活体检测调用失败怎么回事?
返回结果如下:
{\"error_code\":222200,\"error_msg\":\"request body should be json format\",\"log_id\":4589001990594,\"timestamp\":1572414682,\"cached\":0,\"result\":null}
收藏
点赞
0
个赞
请登录后评论
TOP
切换版块
你好 问题解决了吗
List list = new ArrayList();
Map map = new HashMap<>();
map.put("image", imageToBase64Str);
map.put("face_field", "age,beauty,gender,face_shape");
map.put("image_type", "BASE64");
list.add(map);
String param = GsonUtils.toJson(list);
我也与遇到了这个问题,我用的是Java,这个 application/json 参数是要替换吗,搞不太懂;有没有人发一份源码啊,官方给的示例让我这种小白看起来有点吃力啊!!