zoukankan      html  css  js  c++  java
  • curl命令例解

    curl -i --url "https://open.abc.com/ddn/purge/ItemIdReceiver"
    -X "POST"
    -u "$username:$password"
    -H "Date:$date"
    -H "Content-Type: application/json"
    -d'{
        "urls": [
            "https://www.abc.com/test/test1.txt",
            "https://www.abc.com/test/test2.txt"
                ],
     "urlAction":"delete",
        "dirs": [
            "https://www.abc.com/test/",
            "https://www.abc.com/test2/"
                ],
     "dirAction":"expire",
    }'

    -u 等同于header Authorization:Basic username:password的base64编码.

    -d post json 字串.

            try(CloseableHttpClient httpClient = HttpClients.createDefault() ) {
                HttpPost httpPost = new HttpPost("https://open.abc.com/ddn/purge/ItemIdReceiver");
                
                httpPost.addHeader("Content-Type", "application/json");
                //rfc1123
                SimpleDateFormat sdf = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z",Locale.US);
                sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
                String dateStr = sdf.format(new Date());
                
                httpPost.addHeader("Date", dateStr);
                
                //加密
                final Base64 base64 = new Base64();
                String password = base64.encodeToString( HmacSHA1Encrypt(dateStr, key) );
                String basicAuth = base64.encodeToString( (username+ ":" + password).getBytes("utf-8") );
                
                httpPost.addHeader("Authorization", "Basic " + basicAuth);
                
                httpPost.setEntity(new StringEntity(bodyJsonStr) );
                
                HttpResponse response = httpClient.execute(httpPost);// 执行提交
                if(response.getStatusLine().getStatusCode() != 200) {
                    return "error";
                }
                
                HttpEntity responseEntity = response.getEntity();
                if (responseEntity != null) {
                    // 将响应内容转换为字符串
                    reponseStr = EntityUtils.toString(responseEntity, "utf-8");
                    logger.info(trans + ",response=" + reponseStr);
                    
                    return "success";
                }
            }
  • 相关阅读:
    aliyun服务器安装AMH面板
    自动化测试框架Appium的安装和使用
    Java中的replace()函数
    Spring框架中的控制反转和依赖注入
    Spring MVC中ModelAndView
    Java中 VO、 PO、DO、DTO、 BO、 QO、DAO、POJO的概念
    bootstrap中常用的元素类名详解
    处理网页上的字符溢出的方法
    前端开发中用过的比较好用的框架
    php laravel框架学习笔记 (一) 基本工作原理
  • 原文地址:https://www.cnblogs.com/zhao1949/p/9929518.html
Copyright © 2011-2022 走看看