Sto usando Retrofit per accedere a un'API RESTful. L'URL di base è:
Questo è il codice per l'interfaccia:
public interface ExampleService {
@Headers("Accept: Application/JSON")
@POST("/album/featured-albums")
Call<List<Album>> listFeaturedAlbums();
}
ed è così che invio la richiesta e ricevo la risposta:
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();
il registro che ricevo è la cosa strana:
V / Esempio ﹕ Risposta {protocol = http / 1.1, code = 404, message = Not Found, url = http://api.example.com/album/featured-albums }
Cosa sta succedendo qui?