【发布时间】:2016-06-27 02:24:56
【问题描述】:
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);
}
}
[
当我调试我的应用程序时,response.body() 总是只返回“{}”。如果我更改 Call 的元素,返回值将为空。我不知道原因。 我想获取 JSON 数据。我该如何解决? 我可以设置 okhttp 客户端吗?或更改呼叫的返回类型? 请给我答案。
【问题讨论】:
-
后弯好像没有数据
标签: android json network-programming retrofit2