okhttp3-proxy-auth (okhttp3 http 代理鑒權(quán))

因?yàn)榉N種原因,沒有按時(shí)寫博客,最近準(zhǔn)備把博客重新拾起來税课。
最近在寫一個(gè)項(xiàng)目拴事,使用到了okhttp的代理毕莱,因?yàn)槭褂玫拇硎歉顿M(fèi)的弄匕,所以需要鑒權(quán)卜范。在使用的過程中碰到了一些問題所以記錄一下

默認(rèn)的okhttp代理鑒權(quán)如下:

import okhttp3.*;

import java.io.IOException;
import java.net.Authenticator;
import java.net.InetSocketAddress;
import java.net.PasswordAuthentication;
import java.net.Proxy;
import java.util.concurrent.TimeUnit;

public class ProxyTest {
    public static void main(String[] args) {
        String url = "https://www.baidu.com";
        //設(shè)置socks代理服務(wù)器ip端口
        Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("127.0.0.1", 1086));
        Authenticator.setDefault(new Authenticator()
        {
            private PasswordAuthentication authentication = new PasswordAuthentication("username", "password".toCharArray());
            @Override
            protected PasswordAuthentication getPasswordAuthentication()
            {
                return authentication;
            }
        });


        OkHttpClient client = new OkHttpClient().newBuilder().
                connectTimeout(120, TimeUnit.SECONDS).readTimeout(120, TimeUnit.SECONDS).proxy(proxy)
                // 解決內(nèi)存溢出問題
                .connectionPool(new ConnectionPool(5, 1, TimeUnit.SECONDS)).build();
        Request build = new Request.Builder()
                .url(url)
                .build();

        Response response = null;

        client.newCall(build).enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                e.printStackTrace();
            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                if (!response.isSuccessful()) {
                    throw new IOException("服務(wù)器端錯(cuò)誤: " + response);
                }
                System.out.println(response.body().string());
            }
        });
    }
}

但是試了一下發(fā)現(xiàn)會(huì)報(bào)錯(cuò),代理鑒權(quán)失敗

java.io.IOException: Failed to authenticate with proxy
    at okhttp3.internal.connection.RealConnection.createTunnel(RealConnection.java:401)
    at okhttp3.internal.connection.RealConnection.connectTunnel(RealConnection.java:218)
    at okhttp3.internal.connection.RealConnection.connect(RealConnection.java:159)
    at okhttp3.internal.connection.StreamAllocation.findConnection(StreamAllocation.java:257)
    at okhttp3.internal.connection.StreamAllocation.findHealthyConnection(StreamAllocation.java:135)
    at okhttp3.internal.connection.StreamAllocation.newStream(StreamAllocation.java:114)
    at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:42)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
    at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
    at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:126)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
    at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:200)
    at okhttp3.RealCall$AsyncCall.execute(RealCall.java:147)
    at okhttp3.internal.NamedRunnable.run(NamedRunnable.java:32)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    at java.lang.Thread.run(Thread.java:748)

于是采用另外一種方式

import okhttp3.*;

import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.util.concurrent.TimeUnit;

public class ProxyTest {
    public static void main(String[] args) {

        String url = "https://www.baidu.com";
        final String username = "username";
        final String password = "password";

        Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("127.0.0.1", 1086));

        Authenticator proxyAuthenticator = new Authenticator() {
            @Override
            public Request authenticate(Route route, Response response) throws IOException {
                String credential = Credentials.basic(username, password);
                return response.request().newBuilder()
                        .header("Proxy-Authorization", credential)
                        .build();
            }
        };


        OkHttpClient client = new OkHttpClient().newBuilder().
                connectTimeout(120, TimeUnit.SECONDS).readTimeout(120, TimeUnit.SECONDS).proxy(proxy)
                .proxyAuthenticator(proxyAuthenticator)
                // 解決內(nèi)存溢出問題
                .connectionPool(new ConnectionPool(5, 1, TimeUnit.SECONDS)).build();
        Request build = new Request.Builder()
                .url(url)
                .build();

        Response response = null;

        client.newCall(build).enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                e.printStackTrace();
            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                if (!response.isSuccessful()) {
                    throw new IOException("服務(wù)器端錯(cuò)誤: " + response);
                }
                System.out.println(response.body().string());
            }
        });
    }
}

通過將用戶名和密碼增加到header中的這種方式解決,不過通過引入的包隧土,還是能夠看出第一種用的是java.net 包中的鑒權(quán)方式垛孔,應(yīng)該是跟okhttp的鑒權(quán)方式有區(qū)別導(dǎo)致的

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末藕甩,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子周荐,更是在濱河造成了極大的恐慌狭莱,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件概作,死亡現(xiàn)場(chǎng)離奇詭異腋妙,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)讯榕,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門骤素,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人愚屁,你說我怎么就攤上這事济竹。” “怎么了集绰?”我有些...
    開封第一講書人閱讀 157,435評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵规辱,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我栽燕,道長(zhǎng)罕袋,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,509評(píng)論 1 284
  • 正文 為了忘掉前任碍岔,我火速辦了婚禮浴讯,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘蔼啦。我一直安慰自己榆纽,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,611評(píng)論 6 386
  • 文/花漫 我一把揭開白布捏肢。 她就那樣靜靜地躺著奈籽,像睡著了一般。 火紅的嫁衣襯著肌膚如雪鸵赫。 梳的紋絲不亂的頭發(fā)上衣屏,一...
    開封第一講書人閱讀 49,837評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音辩棒,去河邊找鬼狼忱。 笑死膨疏,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的钻弄。 我是一名探鬼主播佃却,決...
    沈念sama閱讀 38,987評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼窘俺!你這毒婦竟也來了饲帅?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,730評(píng)論 0 267
  • 序言:老撾萬榮一對(duì)情侶失蹤批销,失蹤者是張志新(化名)和其女友劉穎洒闸,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體均芽,經(jīng)...
    沈念sama閱讀 44,194評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡丘逸,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,525評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了掀宋。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片深纲。...
    茶點(diǎn)故事閱讀 38,664評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖劲妙,靈堂內(nèi)的尸體忽然破棺而出湃鹊,到底是詐尸還是另有隱情,我是刑警寧澤镣奋,帶...
    沈念sama閱讀 34,334評(píng)論 4 330
  • 正文 年R本政府宣布币呵,位于F島的核電站,受9級(jí)特大地震影響侨颈,放射性物質(zhì)發(fā)生泄漏余赢。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,944評(píng)論 3 313
  • 文/蒙蒙 一哈垢、第九天 我趴在偏房一處隱蔽的房頂上張望妻柒。 院中可真熱鬧,春花似錦耘分、人聲如沸举塔。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)央渣。三九已至,卻和暖如春渴频,著一層夾襖步出監(jiān)牢的瞬間芽丹,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評(píng)論 1 266
  • 我被黑心中介騙來泰國(guó)打工枉氮, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留志衍,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,389評(píng)論 2 360
  • 正文 我出身青樓聊替,卻偏偏與公主長(zhǎng)得像楼肪,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子惹悄,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,554評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容