|
|
@@ -163,6 +163,10 @@ public class AiwenIpService implements BizHandler<AiwenParam,AiwenParseIpInfoVO>
|
|
|
}
|
|
|
|
|
|
String url = aiwenDto.getUrl() + "/?key=" + aiwenDto.getKey() + "&ip=" + aiwenIpParam.getIp() + "&coordsys=WGS84";
|
|
|
+ Map<String,String> requestMap = new HashMap();
|
|
|
+ requestMap.put("key", aiwenDto.getKey());
|
|
|
+ requestMap.put("ip", aiwenIpParam.getIp());
|
|
|
+ logDto.setRequestParam(JSON.toJSONString(requestMap));
|
|
|
logDto.setUrl(url);
|
|
|
// 调用接口解析ip地址信息
|
|
|
String response = HttpClientUtils.get(url, new HashMap());
|