人脸识别图片上传过大
Ta的回复 :AipFace client = new AipFace(APP_ID, API_KEY, SECRET_KEY); // 可选:设置网络连接参数 client.setConnectionTimeoutInMillis(2000); client.setSocketTimeoutInMillis(60000); // 传入可选参数调用接口 HashMap<String, String> options = new HashMap<String, String>(); options.put("max_face_num", "1"); options.put("face_field","age,beauty,expression"); options.put("face_type", "LIVE"); // 参数为本地图片路径 org.json.JSONObject detectRes = client.detect(base64String, "BASE64", options);