https://api.heweather.com/x3/weather?cityid=城市ID&key=XXXXXXXXX
這種API 如何用Retrofit 來書寫呢
@GET("x3/weather?cityid={cityid}&key={apikey}") Call<WeatherResult> WeatherGet(@Path("cityid") String id,@Path("apikey") String key);
這樣寫 被提示要使用`@Query("cityid") String id`
Call<WeatherResult> WeatherGet(@Query("cityid") String id,@Path("apikey") String key);
修改完后 又被提示 Path 不能放在 Query后面
那么我想問這樣的API 如何寫呢