普惠GO服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
puhui-go/service/src/main/java/com/hfkj/common/utils/AliyunService.java

56 lines
1.6 KiB

package com.hfkj.common.utils;
import com.alibaba.fastjson.JSONObject;
import org.apache.http.HttpResponse;
import org.apache.http.util.EntityUtils;
import java.util.HashMap;
import java.util.Map;
/**
* 阿里云业务服务
* @className: AliyunService
* @author: HuRui
* @date: 2024/4/3
**/
public class AliyunService {
/**
* 查询ip地址
* @param ip ip地址
* @return
*/
public static JSONObject queryAddress(String ip) {
try {
String host = "https://ipaddquery.market.alicloudapi.com";
String path = "/ip/address-query";
String method = "POST";
String appcode = "f9ace4c915054ca697a76fb9a4e1e8c0";
Map<String, String> headers = new HashMap<>();
headers.put("Authorization", "APPCODE " + appcode);
headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
Map<String, String> bodys = new HashMap<>();
bodys.put("ip", ip);
HttpResponse response = HttpUtils.doPost(host, path, method, headers, new HashMap<>(), bodys);
JSONObject resObj = JSONObject.parseObject(EntityUtils.toString(response.getEntity()));
if (resObj.getString("code").equals("200")) {
return resObj.getJSONObject("data");
}
return null;
} catch (Exception e) {
return null;
}
}
public static void main(String[] args) {
try {
System.out.println(queryAddress("123.147.76.209"));
} catch (Exception e) {
e.printStackTrace();
}
}
}