接入第三方物流服务平台

1.      物流服务购买

1)登录阿里云平台:https://www.aliyun.com/

2)注册登录阿里云账号,搜索关键字 物流***

3)询问客服,选择合适服务(有些服务调用第三方物流时必须要传快递公司和物流单号,有些可以自动识别快递公司只需要传物流单号即可;有些可以实现国际物流服务,有些只能实现国内物流服务等等内容)

本人综合公司业务最总选择的是全国快递物流查询,如下图所示:


4)购买服务成功后,可获取appKey、和AppCode

2.API接口

调用地址:http(s)://wuliu.market.alicloudapi.com/kdi

请求方式:GET

返回类型:JSON

API 调用:API 简单身份认证调用方法(APPCODE

API 签名认证调用方法(AppKey& AppSecret

3.程序实现

public classLogisticsUtil {

   private static Logger logger = Logger.getLogger(LogisticsUtil.class);

   private static final String host= "https://cexpress.market.alicloudapi.com";

   private static final String path= "/cexpress";

    private static finalString method = "GET";

    private static finalString appcode = "你的appCode";

 

    public static StringLogisticsAPI(String logisticsNum) {

        Map<String, String> headers = newHashMap<String, String>();

       //最后在header中的格式(中间是英文空格)Authorization:APPCODE83359fd73fe94948385f570e3c139105

       headers.put("Authorization", "APPCODE" + appcode);

       Map<String, String> querys = newHashMap<String, String>();

       querys.put("no", logisticsNum);

       String body ="";

       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

       */

       longstartTime = System.currentTimeMillis();

       HttpResponseresponse = WLHttpUtils.doGet(host, path, method,headers, querys);

       intstatusCode = ((org.apache.http.HttpResponse) response).getStatusLine().getStatusCode();

       longendTime = System.currentTimeMillis(); 

          logger.info("statusCode:"+ statusCode); 

          logger.info("调用API 花费时间(单位:毫秒)" + (endTime - startTime));

          

           if(statusCode != HttpStatus.SC_OK) { 

              logger.error("Method failed:" + response.getStatusLine()); 

          }else {

          //获取responsebody

          body =EntityUtils.toString(response.getEntity(), "UTF-8");

          returnbody;

           } 

       

        } catch(Exception e) {

       e.printStackTrace();

       }

      return body;

   }

}

 

工具类:

packagecom.jingweiiot.smart_home.utils.weixin.WuLiu;

import java.io.UnsupportedEncodingException;

import java.net.URLEncoder;

import java.security.KeyManagementException;

import java.security.NoSuchAlgorithmException;

import java.security.cert.X509Certificate;

import java.util.ArrayList;

import java.util.List;

import java.util.Map;

import javax.net.ssl.SSLContext;

import javax.net.ssl.TrustManager;

import javax.net.ssl.X509TrustManager;

import org.apache.commons.lang.StringUtils;

import org.apache.http.HttpResponse;

import org.apache.http.NameValuePair;

import org.apache.http.client.HttpClient;

import org.apache.http.client.entity.UrlEncodedFormEntity;

import org.apache.http.client.methods.HttpDelete;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.methods.HttpPost;

import org.apache.http.client.methods.HttpPut;

import org.apache.http.conn.ClientConnectionManager;

import org.apache.http.conn.scheme.Scheme;

import org.apache.http.conn.scheme.SchemeRegistry;

import org.apache.http.conn.ssl.SSLSocketFactory;

import org.apache.http.entity.ByteArrayEntity;

import org.apache.http.entity.StringEntity;

importorg.apache.http.impl.client.DefaultHttpClient;

import org.apache.http.message.BasicNameValuePair;

 

 public classWLHttpUtils {

    

     /**

      * get

      *

      *@param host

      *@param path

      *@param method

      *@param headers

      *@param querys

      *@return

      *@throws Exception

      */

     publicstatic HttpResponse doGet(String host, String path, String method,

            Map<String, String> headers, Map<String, String> querys)throws Exception {       

         HttpClient httpClient = wrapClient(host);

 

        HttpGet request = new HttpGet(buildUrl(host, path, querys));

         for(Map.Entry<String, String> e : headers.entrySet()) {

            request.addHeader(e.getKey(), e.getValue());

         }

         

        return httpClient.execute(request);

     }

    

     /**

      * postform

      *

      *@param host

      *@param path

      *@param method

      *@param headers

      *@param querys

      *@param bodys

      *@return

      *@throws Exception

      */

     publicstatic HttpResponse doPost(String host, String path, String method,

            Map<String, String> headers,

            Map<String, String> querys,

            Map<String, String> bodys)

            throws Exception {       

        HttpClient httpClient = wrapClient(host);

 

        HttpPost request = new HttpPost(buildUrl(host, path, querys));

         for(Map.Entry<String, String> e : headers.entrySet()) {

            request.addHeader(e.getKey(), e.getValue());

         }

 

         if(bodys != null) {

            List<NameValuePair> nameValuePairList = newArrayList<NameValuePair>();

 

            for (String key : bodys.keySet()) {

                nameValuePairList.add(new BasicNameValuePair(key, bodys.get(key)));

            }

            UrlEncodedFormEntity formEntity = newUrlEncodedFormEntity(nameValuePairList, "utf-8");

            formEntity.setContentType("application/x-www-form-urlencoded;charset=UTF-8");

            request.setEntity(formEntity);

         }

 

        return httpClient.execute(request);

     }   

    

     /**

      * PostString

      *

      *@param host

      *@param path

      *@param method

      *@param headers

      *@param querys

      *@param body

      *@return

      *@throws Exception

      */

     publicstatic HttpResponse doPost(String host, String path, String method,

            Map<String, String> headers,

            Map<String, String> querys,

             String body)

            throws Exception {       

        HttpClient httpClient = wrapClient(host);

 

        HttpPost request = new HttpPost(buildUrl(host, path, querys));

         for(Map.Entry<String, String> e : headers.entrySet()) {

            request.addHeader(e.getKey(), e.getValue());

         }

 

         if(StringUtils.isNotBlank(body)) {

            request.setEntity(new StringEntity(body, "utf-8"));

         }

 

        return httpClient.execute(request);

     }

    

     /**

      * Poststream

      *

      *@param host

      *@param path

      *@param method

      *@param headers

      *@param querys

      *@param body

      *@return

      *@throws Exception

      */

     publicstatic HttpResponse doPost(String host, String path, String method,

            Map<String, String> headers,

            Map<String, String> querys,

            byte[] body)

            throws Exception {       

        HttpClient httpClient = wrapClient(host);

 

        HttpPost request = new HttpPost(buildUrl(host, path, querys));

         for(Map.Entry<String, String> e : headers.entrySet()) {

            request.addHeader(e.getKey(), e.getValue());

         }

 

         if(body != null) {

            request.setEntity(new ByteArrayEntity(body));

         }

 

        return httpClient.execute(request);

     }

    

     /**

      * PutString

      *@param host

      *@param path

      *@param method

      *@param headers

      *@param querys

      * @parambody

      *@return

      *@throws Exception

      */

     publicstatic HttpResponse doPut(String host, String path, String method,

            Map<String, String> headers,

            Map<String, String> querys,

            String body)

             throws Exception {       

        HttpClient httpClient = wrapClient(host);

 

        HttpPut request = new HttpPut(buildUrl(host, path, querys));

         for(Map.Entry<String, String> e : headers.entrySet()) {

            request.addHeader(e.getKey(), e.getValue());

         }

 

         if(StringUtils.isNotBlank(body)) {

            request.setEntity(new StringEntity(body, "utf-8"));

         }

 

        return httpClient.execute(request);

     }

    

     /**

      * Putstream

      *@param host

      *@param path

      *@param method

      *@param headers

      *@param querys

      *@param body

      *@return

      *@throws Exception

      */

     publicstatic HttpResponse doPut(String host, String path, Stringmethod,Map<String, String> headers, Map<String, String> querys,

            byte[] body)

            throws Exception {       

        HttpClient httpClient = wrapClient(host);

 

        HttpPut request = new HttpPut(buildUrl(host, path, querys));

         for(Map.Entry<String, String> e : headers.entrySet()) {

            request.addHeader(e.getKey(), e.getValue());

         }

 

         if(body != null) {

            request.setEntity(new ByteArrayEntity(body));

         }

 

        return httpClient.execute(request);

     }

    

     /**

      *Delete

     

      *@param host

      *@param path

      *@param method

      *@param headers

      *@param querys

      * @return

      *@throws Exception

      */

     publicstatic HttpResponse doDelete(String host, String path, String method,

            Map<String, String> headers,

            Map<String, String> querys)

            throws Exception {       

         HttpClient httpClient = wrapClient(host);

 

        HttpDelete request = new HttpDelete(buildUrl(host, path, querys));

         for(Map.Entry<String, String> e : headers.entrySet()) {

            request.addHeader(e.getKey(), e.getValue());

         }

        

        return httpClient.execute(request);

     }

    

     privatestatic String buildUrl(String host, String path, Map<String, String>querys) throws UnsupportedEncodingException {

        StringBuilder sbUrl = new StringBuilder();

        sbUrl.append(host);

         if(!StringUtils.isBlank(path)) {

            sbUrl.append(path);

         }

         if(null != querys) {

            StringBuilder sbQuery = new StringBuilder();

            for (Map.Entry<String, String> query : querys.entrySet()) {

                if (0 < sbQuery.length()) {

                    sbQuery.append("&");

                }

                if (StringUtils.isBlank(query.getKey()) &&!StringUtils.isBlank(query.getValue())) {

                    sbQuery.append(query.getValue());

                }

                if (!StringUtils.isBlank(query.getKey())) {

                    sbQuery.append(query.getKey());

                    if (!StringUtils.isBlank(query.getValue())) {

                         sbQuery.append("=");

                        sbQuery.append(URLEncoder.encode(query.getValue(), "utf-8"));

                    }                   

                }

            }

            if (0 < sbQuery.length()) {

                sbUrl.append("?").append(sbQuery);

            }

         }

        

        return sbUrl.toString();

     }

    

     privatestatic HttpClient wrapClient(String host) {

        HttpClient httpClient = new DefaultHttpClient();

         if (host.startsWith("https://")) {

            sslClient(httpClient);

         }

        

        return httpClient;

     }

    

     privatestatic void sslClient(HttpClient httpClient) {

         try{

            SSLContext ctx = SSLContext.getInstance("TLS");

            X509TrustManager tm = new X509TrustManager() {

                public X509Certificate[] getAcceptedIssuers() {

                    return null;

                }

                public void checkClientTrusted(X509Certificate[] xcs, String str) {

                    

                }

                public void checkServerTrusted(X509Certificate[] xcs, String str) {

                    

                }

            };

            ctx.init(null, new TrustManager[] { tm }, null);

            SSLSocketFactory ssf = new SSLSocketFactory(ctx);

            ssf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);

            ClientConnectionManager ccm = httpClient.getConnectionManager();

            SchemeRegistry registry = ccm.getSchemeRegistry();

            registry.register(new Scheme("https", 443, ssf));

         }catch (KeyManagementException ex) {

            throw new RuntimeException(ex);

         } catch (NoSuchAlgorithmException ex) {

            throw new RuntimeException(ex);

         }

    }

}


猜你喜欢

转载自blog.csdn.net/weixin_40129263/article/details/80988272