0

我正在使用 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();

我主要想知道错误是客户端异常还是服务器异常。

4

1 回答 1

0

您可以删除该.onErrorReturn( throwable -> null )部分,HTTP 错误将onError作为一个返回ApolloHttpException,您可以调用它.code()来获取 HTTP 代码。

于 2021-06-07T21:32:59.607 回答