API 요청이 제대로 되지 않는 문제

일단 요청 주소에 다 집어 넣기

뭐가 문제인지 모르겠음..

class WeatherAPI {
    companion object{
        const val DOMAIN = "<http://apis.data.go.kr/1360000/MidFcstInfoService/>" // endPoint
        const val API_KEY = "api_key"
    }
}

이렇게 지정해주고

retrofit 함수 파라미터에 WeatherAPI.API_KEY 넣어주면

아~무런 결과도 뜨지 않음

@GET("{key}&pageNo=1&numOfRows=10&dataType=json&regId=11H20201&tmFc=202109131800")
fun getWeather(@Path("key") key: String): Call<Weather>

그래서 그냥 냅다 주소 때려버리면

@GET("api+key&pageNo=1&numOfRows=10&dataType=json&regId=11H20201&tmFc=202109131800")
fun getWeather(): Call<Weather>