高德开放平台天气查询API

醉酒当歌 提交于 2020-03-07 12:24:39

更多内容,请查看博客原文:高德开放平台天气查询API
https://finolo.gy/2020/01/高德开放平台天气查询API/

高德开放平台下的天气查询接口文档

https://lbs.amap.com/api/webservice/guide/api/weatherinfo

注册开发者账号,获取Key

https://restapi.amap.com/v3/weather/weatherInfo?parameters

parameters代表的参数包括必填参数和可选参数。

https://restapi.amap.com/v3/weather/weatherInfo?key=[key]&city=310115

返回结果:

{
    "status": "1",
    "count": "1",
    "info": "OK",
    "infocode": "10000",
    "lives": [
        {
            "province": "上海",
            "city": "浦东新区",
            "adcode": "310115",
            "weather": "多云",
            "temperature": "6",
            "winddirection": "北",
            "windpower": "≤3",
            "humidity": "56",
            "reporttime": "2020-01-12 17:57:21"
        }
    ]
}

百度api是jsonp的方式获取数据,而高德地图的api是允许跨域的。

更多内容,请查看博客原文:高德开放平台天气查询API
https://finolo.gy/2020/01/高德开放平台天气查询API/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!