public static void main(String[] args) {
String host = "https://jisujfhzh.market.alicloudapi.com";
String path = "/fontconvert/convert";
String method = "ANY";
String appcode = "你自己的AppCode";
Map<String, String> headers = new HashMap<String, String>();
//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
headers.put("Authorization", "APPCODE " + appcode);
//根据API的要求,定义相对应的Content-Type
headers.put("Content-Type", "application/json; charset=UTF-8");
Map<String, String> querys = new HashMap<String, String>();
querys.put("content", "你好");
querys.put("type", "2h");
try {
/**
* 重要提示如下:
* HttpUtils请从
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
* 下载
*
* 相应的依赖请参照
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
*/
System.out.println(response.toString());
//获取response的body
//System.out.println(EntityUtils.toString(response.getEntity(),"utf-8"));
} catch (Exception e) {
e.printStackTrace();
}
}