如何使用RxJava处理Retrofit 2中的网络错误

时间:2016-03-14 12:02:25

标签: android rx-java retrofit2

我正在使用Retrofit2和RxJava。所以我的电话看起来像

subscriptions.add(authenticateUser(mReq, refreshRequest)
                .observeOn(Schedulers.io())
                .subscribeOn(Schedulers.io())
                .subscribe(authResponseModel -> {
                    processResponse(authResponseModel, userName, encryptedPass);
                }, throwable ->
                {
                    LOGW(TAG, throwable.getMessage());
                }));

这是一个身份验证API。所以当api调用失败时,我从服务器得到响应,如

{"messages":["Invalid username or password "]}

以及400 Bad Request

我按预期在400 Bad Request对象中获得throwable。但我想收到服务器抛出的消息。我无法弄清楚如何去做。 有人可以帮忙。

1 个答案:

答案 0 :(得分:4)

if(throwable instanceof HttpException) {
    //we have a HTTP exception (HTTP status code is not 200-300)
    Converter<ResponseBody, Error> errorConverter =
        retrofit.responseBodyConverter(Error.class, new Annotation[0]);
    //maybe check if ((HttpException) throwable).code() == 400 ??
    Error error = errorConverter.convert(((HttpException) throwable).response().errorBody());
}

假设您正在使用Gson:

public class Error {
    public List<String> messages;
}

messages的内容应该是错误消息列表。在你的例子中 messages.get(0)将是:用户名或密码无效