改进POST请求response.isSuccessful()返回false

时间:2017-09-02 10:49:38

标签: java android retrofit2

我正在尝试使用Retrofit2发出POST请求。但我处于response.isSuccessful()返回false并且我不知道如何调试它的情况。我检查了我的后端日志,没有任何错误,没有。

我确保请求的网址是正确的,并且所有参数都是正确的。我做错了什么?对我来说,似乎请求甚至没有进入我的服务器。

这就是我的所作所为:

我有getter和setter的用户类:

public class User {
    @SerializedName("user_id")
    @Expose
    private int id;
    @SerializedName("first_name")
    @Expose
    private String firstName;
    @SerializedName("last_name")
    @Expose
    private String lastName;

    public int getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getFirstName() {
        return firstName;
    }

    public void setFirstName(String firstName) {
        this.firstName = firstName;
    }

    public String getLastName() {
        return lastName;
    }

    public void setLastName(String lastName) {
        this.lastName = lastName;
    }
}

我有我的服务:

public interface APIService {

    @POST("auth/register")
    @FormUrlEncoded
    Call<User> register(@Field("email") String email, @Field("password") String password);
}

现在我尝试执行它,在响应块中返回false:

private void registerUser(){
        Call<User> registerCall = apiService.register(email, password);

        registerCall.enqueue(new Callback<User>() {
            @Override
            public void onResponse(Call<User> call, Response<User> response) {

                if(response.isSuccessful()){
                    int id = response.body().getId();
                    String firstName = response.body().getFirstName();
                    String lastName = response.body().getLastName();

                }else{
                    System.out.println("ERROR "+response.raw().body());
                }

            }

            @Override
            public void onFailure(Call<User> call, Throwable t) {

            }
        });
    }

编辑:这是ApiUtils:

public class ApiUtils {

    private ApiUtils() {}

    public static final String BASE_URL = "https://api.mydomain.com/";

    public static APIService getAPIService() {

        return RetrofitClient.getClient(BASE_URL).create(APIService.class);
    }
}

我做错了什么?我怎么做更多的调试?任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

构建改造实例(你的getApiService方法)似乎有问题,并且要查看api调用的日志和状态,你可以使用http日志拦截器:

private static Retrofit retrofit = null;

OkHttpClient client = new OkHttpClient();
client.interceptors().add(new LogJsonInterceptor());

public static Retrofit getClient(String baseUrl) {
    if (retrofit==null) {
        retrofit = new Retrofit.Builder()
        .baseUrl(BASE_URL)
        .addConverterFactory(GsonConverterFactory.create())
        .client(client)
        .build();
    }
    return retrofit;
}

您可以使用拦截器查看API的原始JSON响应。希望这可以解决你的问题。