|
@@ -46,7 +46,13 @@ public class AnalyseFaced {
|
|
|
yunParam.put("data", responseBody);
|
|
|
yunParam.put("bayonetId", bayonetId);
|
|
|
String coverJsonString = JSONObject.toJSONString(yunParam);
|
|
|
- log.info("覆盖物调用云上传参为:{}", coverJsonString);
|
|
|
+
|
|
|
+ HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_SERVER);
|
|
|
+ ghPost.addHeaders(headers);
|
|
|
+ ghPost.body(coverJsonString)
|
|
|
+ .setReadTimeout(3600000)
|
|
|
+ .execute()
|
|
|
+ .body();
|
|
|
}
|
|
|
return responseBody;
|
|
|
}
|
|
@@ -86,8 +92,16 @@ public class AnalyseFaced {
|
|
|
yunParam.put("id", id);
|
|
|
yunParam.put("data", result);
|
|
|
yunParam.put("bayonetId", bayonetId);
|
|
|
- String coverJsonString = JSONObject.toJSONString(yunParam);
|
|
|
- log.info("国旗调用云上传参为:{}", coverJsonString);
|
|
|
+ String flagJsonString = JSONObject.toJSONString(yunParam);
|
|
|
+
|
|
|
+ HttpRequest ghPost = HttpUtil.createPost(GH_CLOUD_SERVER);
|
|
|
+ Map<String, String> headers = new HashMap<>();
|
|
|
+ headers.put("Content-Type", "application/json;charset=utf-8");
|
|
|
+ ghPost.addHeaders(headers);
|
|
|
+ ghPost.body(flagJsonString)
|
|
|
+ .setReadTimeout(3600000)
|
|
|
+ .execute()
|
|
|
+ .body();
|
|
|
return null;
|
|
|
}
|
|
|
|