我正在使用 apollo 客户端https://github.com/apollographql/apollo-android来查询 Graphql API。在 Graphql 服务器中,我们返回 HTTPS 状态
return Response.status( Status.BAD_REQUEST ).entity( exception.getMessage() ).build();
如何在客户端获取 HTTPS 状态代码作为响应?
客户端代码
ApolloCall<T> apolloCall = apolloClient.query( query );
Response<T> response = Rx2Apollo.from( apolloCall ).onErrorReturn( throwable -> null ).blockingFirst();
我主要想知道错误是客户端异常还是服务器异常。