要使用Openweather JSON API获取温度,你需要进行以下步骤:
以下是一个示例代码片段(使用Python和requests库)来演示如何获取温度:
import requests
api_key = "YOUR_API_KEY"
city = "London"
units = "metric"
url = f"http://api.openweathermap.org/data/2.5/weather?q={city}&units={units}&appid={api_key}"
response = requests.get(url)
data = response.json()
temperature = data["main"]["temp"]
print(f"The temperature in {city} is {temperature} degrees Celsius.")
请注意,上述代码中的YOUR_API_KEY
应替换为你在Openweather上注册并获取的API密钥。
这是一个基本的示例,你可以根据自己的需求和所使用的编程语言进行相应的修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云