我目前正在学习如何通过关注Udacity的Android课程来构建Android应用程序。一个要求是使用http://api.openweathermap.org/data/2.5/forecast/daily?id=7839805&mode=json&units=metric&cnt=7&appid=[my api key]
调用openweathermap API。
然而,我总是以
结束{"cod":401, "message": "Invalid API key. Please see http://openweathermap.org/faq#error401 for more info."}
如何获得正确的API?
答案 0 :(得分:3)
在openweathermap上开帐户。您将获得API密钥。将其替换为URL:
http://api.openweathermap.org/data/2.5/forecast/daily?id=7839805&mode=json&units=metric&cnt=7&appid=[my api key]
您将能够获得正确的JSON响应。