retrofit2。响应体是null

时间:2016-06-27 02:24:56

标签: android json network-programming retrofit2

    Retrofit retrofit = new Retrofit.Builder().baseUrl(Api.Q_BASE)
            .addConverterFactory(GsonConverterFactory.create()).client(client).build();
    Api.ApiInter inter = retrofit.create(Api.ApiInter.class);
    Call<JSONObject> call = inter.getMovieData(sortType[0], Api.P_KEY);
    call.enqueue(new Callback<JSONObject>() {
        @Override
        public void onResponse(Call<JSONObject> call, Response<JSONObject> response) {
            /* */
        }

        @Override
        public void onFailure(Call<JSONObject> call, Throwable t) {
            Log.d(LOG_TAG, "failed to get response.");
        }
    });

/

public class Api {
    public static final String Q_BASE = "http://api.themoviedb.org/";
    public static final String Q_KEY = "api_key";
    public static final String Q_RESULT = "results";
    public static final String Q_POSTER_PATH = "poster_path";
    public static final String Q_TITLE = "title";
    public static final String Q_OVERVIEW = "overview";
    public static final String Q_DATE = "release_date";
    public static final String Q_VOTE_AVERAGE = "vote_average";
    public static final String P_KEY = "This is private key";
    public static final String REQUEST = "GET";

    public static final String I_BASE = "http://image.tmdb.org/";
    public static final String P_POSTER_SIZE = "w185";

    public interface ApiInter {
        @GET("3/movie/{sort}")
        Call<JSONObject> getMovieData(@Path("sort") String sort, @Query("api_key") String key);

        @GET("t/p/{size}/{url}")
        Call<Bitmap> getMoviePoster(@Path("size") String size, @Path("url") String url);
    }
}

[Debugger]

当我调试我的应用时,response.body()始终仅重新启动“{}”。如果我更改了Call的元素,则返回值将为null。我不知道原因。 我想获得JSON数据。我怎么解决这个问题? 我可以设置okhttp客户端吗?或更改Call的返回类型? 请给我答案。

2 个答案:

答案 0 :(得分:8)

这是一个非常简单的错误。 如果您遇到像我这样的问题,请查看以下三项内容。

  1. 您的改装转换器是Gson。
  2. 您的api接口方法返回Call<JSONObjcet>

  3. 请求成功,但response.body()只是&#34; {}&#34;

  4. 改造使用GsonConverter。所以我们需要在包com.google.gson中使用jsonObject。 您必须将JSONObject更改为JsonObject

答案 1 :(得分:1)

图像中的响应代码为200表示请求成功。所以服务器正在返回{}。也许没有与您作为参数传递的sortType相关的数据。