Android-如何查找天气预报城市ID?
作者:互联网
final String FORECAST_BASE_URL =
"http://api.openweathermap.org/data/2.5/forecast/daily?";
final String QUERY_PARAM = "q";
你好.
我正在制作天气预报应用程序.但是当我使用“ http://openweathermap.org”的API时,
我遇到麻烦了,如何获得城市代码或ID“ q”?
我尝试找到城市ID,但找不到.
示例代码按城市ID拨打电话:
api.openweathermap.org/data/2.5/forecast/daily?id=524901
而且我听说“ q”也用于“ id”.
我的意思是
api.openweathermap.org/data/2.5/forecast/daily?q=524901
也有可能.我想这样做.
那么,如何查找城市ID?
有人知道吗
解决方法:
OpenWeatherMap支持中心也提出了类似的问题.这是链接OpenWeatherMap
另外,这是指向城市列表及其各自ID的链接(只需按CTRL F即可找到所需的城市):List of Cities & IDs
标签:weather,forecasting,android 来源: https://codeday.me/bug/20191028/1955066.html