httpclient5:信任所有证书,调用公众号接口


// Trust standard CA and those trusted by our custom strategy
    SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() {
      // 信任所有
      public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException {
        return true;
      }
    }).build();
    // Allow TLSv1.2 protocol only
    final SSLConnectionSocketFactory sslSocketFactory = SSLConnectionSocketFactoryBuilder.create()
        .setSslContext(sslContext).setTlsVersions(TLS.V_1_2).build();
    final HttpClientConnectionManager cm = PoolingHttpClientConnectionManagerBuilder.create()
        .setSSLSocketFactory(sslSocketFactory).build();
    try (CloseableHttpClient httpclient = HttpClients.custom().setConnectionManager(cm).build()) {
    // 获得access_token
      final HttpGet httpget = new HttpGet(
          "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=自己的&secret=自己的");
      System.out.println("Executing request " + httpget.getMethod() + " " + httpget.getUri());
      final HttpClientContext clientContext = HttpClientContext.create();
      try (CloseableHttpResponse response = httpclient.execute(httpget, clientContext)) {
        System.out.println("----------------------------------------");
        System.out.println(response.getCode() + " " + response.getReasonPhrase());
        System.out.println(EntityUtils.toString(response.getEntity()));

        final SSLSession sslSession = clientContext.getSSLSession();
        if (sslSession != null) {
          System.out.println("SSL protocol " + sslSession.getProtocol());
          System.out.println("SSL cipher suite " + sslSession.getCipherSuite());
        }
      }
    }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM