RESTful API'ye erişmek için Retrofit kullanıyorum. Temel url:
Bu arayüzün kodudur:
public interface ExampleService {
@Headers("Accept: Application/JSON")
@POST("/album/featured-albums")
Call<List<Album>> listFeaturedAlbums();
}
ve şu şekilde istek gönderiyorum ve yanıtı alıyorum:
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();
aldığım günlük garip bir şey:
V / Örnek ﹕ Yanıt {protokol = http / 1.1, kod = 404, ileti = Bulunamadı, url = http://api.example.com/album/featured-albums }
Burada neler oluyor?