RetrofitExample
RetrofitExample copied to clipboard
APPID missing, Openweathermap now required appid
http://api.openweathermap.org/data/2.5/forecast/city?id=524901&APPID={APIKEY}
Change to fixit. thanks public interface WeatherService { @GET("/data/2.5/weather") public void getWeather(@Query("q") String strCity,@Query("appid") String appid, Callback<ApiResponse> callback); }