1. 程式人生 > >解決okHttp使用https拋出stream was reset: PROTOCOL_ERROR的問題

解決okHttp使用https拋出stream was reset: PROTOCOL_ERROR的問題

com client pan code tex toc error 實例化 http2

昨天在做Android接口調用的時候,api接口是https的,用okhttp拋出:

okhttp3.internal.http2.StreamResetException: stream was reset: PROTOCOL_ERROR

技術分享

原因是協議錯誤導致的,解決辦法很簡單,在實例化okhttpclient的時候用以下方法:

OkHttpClient client = new OkHttpClient.Builder()
                .protocols(Collections.singletonList(Protocol.HTTP_1_1))
                .build();

完美解決。

解決okHttp使用https拋出stream was reset: PROTOCOL_ERROR的問題