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 callback);
}