Estou usando o Retrofit para acessar uma API RESTful. O url base é:
Este é o código da interface:
public interface ExampleService {
@Headers("Accept: Application/JSON")
@POST("/album/featured-albums")
Call<List<Album>> listFeaturedAlbums();
}
e é assim que envio a solicitação e recebo a resposta:
new AsyncTask<Void, Void, Response<List<Album>>>() {
@Override
protected Response<List<Album>> doInBackground(Void... params) {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("http://api.example.com/service")
.addConverterFactory(GsonConverterFactory.create())
.build();
ExampleService service = retrofit.create(ExampleService.class);
try {
return service.listFeaturedAlbums().execute();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Response<List<Album>> listCall) {
Log.v("Example", listCall.raw().toString());
}
}.execute();
o log que recebo é a coisa estranha:
V / Exemplo ﹕ Resposta {protocol = http / 1.1, code = 404, message = Not Found, url = http://api.example.com/album/featured-albums }
O que está acontecendo aqui?