HOME 首頁
SERVICE 服務(wù)產(chǎn)品
XINMEITI 新媒體代運營
CASE 服務(wù)案例
NEWS 熱點資訊
ABOUT 關(guān)于我們
CONTACT 聯(lián)系我們
創(chuàng)意嶺
讓品牌有溫度、有情感
專注品牌策劃15年

    https請求http接口

    發(fā)布時間:2023-05-22 08:07:11     稿源: 創(chuàng)意嶺    閱讀: 65        

    大家好!今天讓創(chuàng)意嶺的小編來大家介紹下關(guān)于https請求http接口的問題,以下是小編對此問題的歸納整理,讓我們一起來看看吧。TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    開始之前先推薦一個非常厲害的Ai人工智能工具,一鍵生成原創(chuàng)文章、方案、文案、工作計劃、工作報告、論文、代碼、作文、做題和對話答疑等等TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    只需要輸入關(guān)鍵詞,就能返回你想要的內(nèi)容,有小程序、在線網(wǎng)頁版、PC客戶端和批量生成器TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    官網(wǎng):https://ai.de1919.com。TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    本文目錄:TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    https請求http接口TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    https能跨域調(diào)用http請求嗎TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    可以的,如果調(diào)用HTTP,地址欄不會出現(xiàn)小鎖,當然如果是JS代碼,有的瀏覽器會屏蔽掉的,所以建議還是使用HTTPS資源,詳細說明:HTTPS是嚴格加密傳輸,需要全站源碼HTTPS鏈接,不允許調(diào)用HTTP普通協(xié)議數(shù)據(jù),其中包括:JS、CSS、png、gif、jpg 等任何HTTP協(xié)議普通資源的存在,如果調(diào)用地址欄不會顯示小鎖圖標,超級鏈接除外。

    使用https訪問http/https通信協(xié)議,需要哪些配置文件TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    項目里需要訪問其他接口,通過http/https協(xié)議。我們一般是用HttpClient類來實現(xiàn)具體的http/https協(xié)議接口的調(diào)用。
    // Init a HttpClient
    HttpClient client = new HttpClient();
    String url=http://www.xxx.com/xxx;
    // Init a HttpMethod
    HttpMethod get = new GetMethod(url);
    get.setDoAuthentication(true);
    get.getParams().setParameter(HttpMethodParams.RETRY_HANDLER, new DefaultHttpMethodRetryHandler(1, false));
    // Call http interface
    try {
    client.executeMethod(get);
    // Handle the response from http interface
    InputStream in = get.getResponseBodyAsStream();
    SAXReader reader = new SAXReader();
    Document doc = reader.read(in);
    } finally {
    // Release the http connection
    get.releaseConnection();
    }
    以上代碼在通過普通的http協(xié)議是沒有問題的,但如果是https協(xié)議的話,就會有證書文件的要求了。一般情況下,是這樣去做的。
    // Init a HttpClient
    HttpClient client = new HttpClient();
    String url=https://www.xxx.com/xxx;
    if (url.startsWith("https:")) {
    System.setProperty("javax.net.ssl.trustStore", "/.sis.cer");
    System.setProperty("javax.net.ssl.trustStorePassword", "public");
    }
    于是,這里就需要事先生成一個.sis.cer的文件,生成這個文件的方法一般是先通過瀏覽器訪問https://,導出證書文件,再用JAVA keytool command 生成證書
    # $JAVA_HOME/bin/keytool -import -file sis.cer -keystore .sis.cer
    但這樣做,一比較麻煩,二來證書也有有效期,過了有效期之后,又需要重新生成一次證書。如果能夠避開生成證書文件的方式來使用https的話,就比較好了。
    還好,在最近的項目里,我們終于找到了方法。
    // Init a HttpClient
    HttpClient client = new HttpClient();
    String url=https://www.xxx.com/xxx;
    if (url.startsWith("https:")) {
    this.supportSSL(url, client);
    }
    用到了supportSSL(url, client)這個方法,看看這個方法是如何實現(xiàn)的。
    private void supportSSL(String url, HttpClient client) {
    if(StringUtils.isBlank(url)) {
    return;
    }
    String siteUrl = StringUtils.lowerCase(url);
    if (!(siteUrl.startsWith("https"))) {
    return;
    }

    try {
    setSSLProtocol(siteUrl, client);
    } catch (Exception e) {
    logger.error("setProtocol error ", e);
    }
    Security.setProperty( "ssl.SocketFactory.provider",
    "com.tool.util.DummySSLSocketFactory");
    }
    private static void setSSLProtocol(String strUrl, HttpClient client) throws Exception {

    URL url = new URL(strUrl);
    String host = url.getHost();
    int port = url.getPort();
    if (port <= 0) {
    port = 443;
    }
    ProtocolSocketFactory factory = new SSLSocketFactory();
    Protocol authhttps = new Protocol("https", factory, port);
    Protocol.registerProtocol("https", authhttps);
    // set https protocol
    client.getHostConfiguration().setHost(host, port, authhttps);
    }
    在supportSSL方法里,調(diào)用了Security.setProperty( "ssl.SocketFactory.provider",
    "com.tool.util.DummySSLSocketFactory");
    那么這個com.tool.util.DummySSLSocketFactory是這樣的:
    訪問https 資源時,讓httpclient接受所有ssl證書,在weblogic等容器中很有用
    代碼如下:
    1. import java.io.IOException;
    2. import java.net.InetAddress;
    3. import java.net.InetSocketAddress;
    4. import java.net.Socket;
    5. import java.net.SocketAddress;
    6. import java.net.UnknownHostException;
    7. import java.security.KeyManagementException;
    8. import java.security.NoSuchAlgorithmException;
    9. import java.security.cert.CertificateException;
    10. import java.security.cert.X509Certificate;
    11.
    12. import javax.net.SocketFactory;
    13. import javax.net.ssl.SSLContext;
    14. import javax.net.ssl.TrustManager;
    15. import javax.net.ssl.X509TrustManager;
    16.
    17. import org.apache.commons.httpclient.ConnectTimeoutException;
    18. import org.apache.commons.httpclient.params.HttpConnectionParams;
    19. import org.apache.commons.httpclient.protocol.SecureProtocolSocketFactory;
    20.
    21. public class MySecureProtocolSocketFactory implements SecureProtocolSocketFactory {
    22. static{
    23. System.out.println(">>>>in MySecureProtocolSocketFactory>>");
    24. }
    25. private SSLContext sslcontext = null;
    26.
    27. private SSLContext createSSLContext() {
    28. SSLContext sslcontext=null;
    29. try {
    30. sslcontext = SSLContext.getInstance("SSL");
    31. sslcontext.init(null, new TrustManager[]{new TrustAnyTrustManager()}, new java.security.SecureRandom());
    32. } catch (NoSuchAlgorithmException e) {
    33. e.printStackTrace();
    34. } catch (KeyManagementException e) {
    35. e.printStackTrace();
    36. }
    37. return sslcontext;
    38. }
    39.
    40. private SSLContext getSSLContext() {
    41. if (this.sslcontext == null) {
    42. this.sslcontext = createSSLContext();
    43. }
    44. return this.sslcontext;
    45. }
    46.
    47. public Socket createSocket(Socket socket, String host, int port, boolean autoClose)
    48. throws IOException, UnknownHostException {
    49. return getSSLContext().getSocketFactory().createSocket(
    50. socket,
    51. host,
    52. port,
    53. autoClose
    54. );
    55. }
    56.
    57. public Socket createSocket(String host, int port) throws IOException,
    58. UnknownHostException {
    59. return getSSLContext().getSocketFactory().createSocket(
    60. host,
    61. port
    62. );
    63. }
    64.
    65.
    66. public Socket createSocket(String host, int port, InetAddress clientHost, int clientPort)
    67. throws IOException, UnknownHostException {
    68. return getSSLContext().getSocketFactory().createSocket(host, port, clientHost, clientPort);
    69. }
    70.
    71. public Socket createSocket(String host, int port, InetAddress localAddress,
    72. int localPort, HttpConnectionParams params) throws IOException,
    73. UnknownHostException, ConnectTimeoutException {
    74. if (params == null) {
    75. throw new IllegalArgumentException("Parameters may not be null");
    76. }
    77. int timeout = params.getConnectionTimeout();
    78. SocketFactory socketfactory = getSSLContext().getSocketFactory();
    79. if (timeout == 0) {
    80. return socketfactory.createSocket(host, port, localAddress, localPort);
    81. } else {
    82. Socket socket = socketfactory.createSocket();
    83. SocketAddress localaddr = new InetSocketAddress(localAddress, localPort);
    84. SocketAddress remoteaddr = new InetSocketAddress(host, port);
    85. socket.bind(localaddr);
    86. socket.connect(remoteaddr, timeout);
    87. return socket;
    88. }
    89. }
    90.
    91. //自定義私有類
    92. private static class TrustAnyTrustManager implements X509TrustManager {
    93.
    94. public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
    95. }
    96.
    97. public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
    98. }
    99.
    100. public X509Certificate[] getAcceptedIssuers() {
    101. return new X509Certificate[]{};
    102. }
    103. }
    104.
    105. }
    public class MySecureProtocolSocketFactory implements SecureProtocolSocketFactory {
    static{
    System.out.println(">>>>in MySecureProtocolSocketFactory>>");
    }
    private SSLContext sslcontext = null;

    private SSLContext createSSLContext() {
    SSLContext sslcontext=null;
    try {
    sslcontext = SSLContext.getInstance("SSL");
    sslcontext.init(null, new TrustManager[]{new TrustAnyTrustManager()}, new java.security.SecureRandom());
    } catch (NoSuchAlgorithmException e) {
    e.printStackTrace();
    } catch (KeyManagementException e) {
    e.printStackTrace();
    }
    return sslcontext;
    }

    private SSLContext getSSLContext() {
    if (this.sslcontext == null) {
    this.sslcontext = createSSLContext();
    }
    return this.sslcontext;
    }

    public Socket createSocket(Socket socket, String host, int port, boolean autoClose)
    throws IOException, UnknownHostException {
    return getSSLContext().getSocketFactory().createSocket(
    socket,
    host,
    port,
    autoClose
    );
    }
    public Socket createSocket(String host, int port) throws IOException,
    UnknownHostException {
    return getSSLContext().getSocketFactory().createSocket(
    host,
    port
    然后按如下方式使用HttpClient
    Protocol myhttps = new Protocol("https", new MySecureProtocolSocketFactory (), 443);
    Protocol.registerProtocol("https", myhttps);
    HttpClient httpclient=new HttpClient();

    https請求http接口TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    https的網(wǎng)站怎么請求http的接口TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司

    您好!
    網(wǎng)站關(guān)閉HTTPS強制訪問,這樣就形成了HTTP與HTTPS共享協(xié)議,您可以直接調(diào)用HTTP地址就可以實現(xiàn)請求HTTP接口了,當然也可以使用其它的端口來作為HTTP端口。

    以上就是關(guān)于https請求http接口相關(guān)問題的回答。希望能幫到你,如有更多相關(guān)問題,您也可以聯(lián)系我們的客服進行咨詢,客服也會為您講解更多精彩的知識和內(nèi)容。TlM創(chuàng)意嶺 - 安心托付、值得信賴的品牌設(shè)計、營銷策劃公司


    推薦閱讀:

    杭州影視頻道HTV4海選

    網(wǎng)站注冊頁面html模板(網(wǎng)站注冊頁面html模板在哪)

    網(wǎng)頁設(shè)計模板html代碼(網(wǎng)頁設(shè)計模板html代碼免費)

    新鄉(xiāng)市抖音代運營(新鄉(xiāng)市抖音代運營公司電話)

    中國最美的女星排行榜(中國最美的女星排行榜圖片)