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);
}
}
[
When I debugged my app, response.body() always retruned only "{}". And if I change Call's element, return values will be null. I don't know the reason. I want to get JSON data. How I fix that? May I set okhttp client? or change Call's return type? Please give me the answer.
Aucun commentaire:
Enregistrer un commentaire