最新バージョンのレトロフィット、retrofit2、v2.0.0-beta3 を使用しています。API 応答は、User オブジェクトまたは空の応答 (null 値) です。正しいユーザー名/パスワードを送信すると、成功した User オブジェクトを使用して onResponse メソッドにハンドルが入ります。しかし、間違ったパスワードを送信すると、API は何も返さず、応答ヘッダーの値はほとんどありません。しかし、私はonFailure(Throwable) でMalformedJsonExceptionを取得しています。
「com.google.gson.stream.MalformedJsonException: JsonReader.setLenient(true) を使用して、行 1 列 1 パス $ で不正な形式の JSON を受け入れてください」
ResponseInceptor または Custom CallBack を使用して、null 応答を処理し、応答ヘッダーを読み取る方法が必要だと思います。しかし、これをどのように使用できるかわかりません。
ここにコードがあります、
// Define the interceptor, add authentication headers
Interceptor interceptor = new Interceptor() {
@Override
public okhttp3.Response intercept(Chain chain) throws IOException {
Request newRequest = chain.request().newBuilder().addHeader("Authorization", new ITAuthorizationUtil().getAuthorization(user.getMobile_no(), user.getPassword())).build();
return chain.proceed(newRequest);
}
};
// Add the interceptor to OkHttpClient
OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(interceptor)
.build();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(baseURL)
.addConverterFactory(GsonConverterFactory.create())
.client(client)
.build();
ITAPIEndpointsInterface apiEndpointsInterface = retrofit.create(ITAPIEndpointsInterface.class);
///
Call<User> call = apiEndpointsInterface.userLogin(senderId, applicationId, registrationId);
//asynchronous call
call.enqueue(new Callback<User>() {
@Override
public void onResponse(Response<User> response) {
ApiResponse apiResponse = ITAPIStatusInfo.getApiErrorObject_Retrofit(response.headers());
onSuccess( response.body(),apiResponse);
}
@Override
public void onFailure(Throwable t) {
Log.d(">>> ",t.getMessage());
}
});