我必须从这个 URL https://openweathermap.org/获取数据 。
现在我正在使用这些 API
http://api.openweathermap.org/data/2.5/weatherq=(cityname)&appid=(myAPIKEY)
所以我已经在下面的代码工作
这是我的基本网址:
Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ssZ").create();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("http://api.openweathermap.org/data/2.5/")
.addConverterFactory(GsonConverterFactory.create(gson))
.build();
有谁知道如何将 cityName 作为参数传递?
附言。改造2
饮歌长啸
Qyouu
白板的微信
相关分类