Pertanyaan yang diberi tag retrofit

92
Retrofit dan GET menggunakan parameter

Saya mencoba mengirim permintaan ke Google GeoCode API menggunakan Retrofit. Antarmuka layanan terlihat seperti ini: public interface FooService { @GET("/maps/api/geocode/json?address={zipcode}&sensor=false") void getPositionByZip(@Path("zipcode") int zipcode, Callback<String>...