如何在Android设备上使用http / 2与Okhttp?

前端之家收集整理的这篇文章主要介绍了如何在Android设备上使用http / 2与Okhttp?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我测试一个支持HTTP / 2,like this站点,
我尝试使用okhttp发送请求:
OkHttpClient okHttpClient = new OkHttpClient();

Request request = new Request.Builder()
        .url("https://www.google.it")
        .build();


okHttpClient.newCall(request).enqueue(new Callback() {
    @Override
    public void onFailure(Request request,IOException e) {
        e.printStackTrace();
    }

    @Override
    public void onResponse(Response response) throws IOException {
        Log.d("TestHttp","OkHttp-Selected-Protocol: " + response.header("OkHttp-Selected-Protocol"));
        Log.d("TestHttp","Response code is " + response.code());
    }
});

在日志中我得到这样的东西:

OkHttp-Selected-Protocol: http/1.1

okhttpClient选择使用http / 1.1,如何强制使用HTTP / 2?

解决方法

Okhttp 2.5仅通过ALPN支持5.0以上的http / 2.

但是您可以通过NPN修改代码支持4.0以上的http / 2.

原文链接:https://www.f2er.com/android/311656.html

猜你在找的Android相关文章