뭐가 문제인지 모르겠음..
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®Id=11H20201&tmFc=202109131800")
fun getWeather(@Path("key") key: String): Call<Weather>
그래서 그냥 냅다 주소 때려버리면
@GET("api+key&pageNo=1&numOfRows=10&dataType=json®Id=11H20201&tmFc=202109131800")
fun getWeather(): Call<Weather>