android使用okhttp网络请求失败:Expected ':status' header not present

android使用okhttp网络请求失败提示:Expected ':status' header not present

造成的原因HTTP/2 protocol not working with okhttp

协议有:HTTP/2   HTTP/1.1  SPDY,具体可以看下这个

https://zh.wikipedia.org/wiki/HTTP%2F2#HTTP/1.1%E4%B8%8ESPDY%E7%9A%84%E5%8C%BA%E5%88%AB

android使用okhttp恰好后端设置的协议是HTTP/2时就会请求失败

修复方式:

1.修改协议:只使用HTTP/1.1(不能使用Protocol.HTTP_2 或者 Protocol.SPDY_3)

OkHttpClient client = new OkHttpClient();

client.setProtocols(Arrays.asList(Protocol.HTTP_1_1));

这样解决了问题,然后我跑去查了下okhttp,发现okhttp支持HTTP/2是从2.3.0版本开始的,

github:https://github.com/square/okhttp/blob/master/CHANGELOG.md#version-230

android使用okhttp网络请求失败:Expected ':status' header not present_第1张图片

但是我不懂我的项目 okhttp:3.2.0为什么还是请求失败了???希望知道的同学告诉我下,谢谢。

 

 

 

 

你可能感兴趣的:(android使用okhttp网络请求失败:Expected ':status' header not present)