免费的天气API接口 获取今日, 未来3天, 未来7天天气预报数据

接口1

https://www.tianqiapi.com/index/doc?version=v9

使用说明

使用说明
接口不需要注册key,也没有频率限制,请放心使用。

适用于小程序、JS、 Android、iOS等,curl即可获取到,允许跨域。

使用方法

$data = file_get_contents('https://www.tianqiapi.com/api/?version=v1&appid=23035354&appsecret=8YvlPNrz');
$json = json_decode($data, true);
print_r($json);

接口介绍
1. 实况天气(实时天气数据) 对应的version参数是 v61

2. 七日天气 对应的version参数是 v9

3. 另外提供空气质量, 国外天气等接口, 请访问 https://www.tianqiapi.com/ 查看更多资料

接口二

<!DOCTYPE html> <html> <head> </head> <title></title> <body> <iframe name="weather_inc"  src="http://i.tianqi.com/index.php?c=code&id=7"  style="border:solid 1px #7ec8ea"  width="250" height="100" frameborder="0"  marginwidth="0" marginheight="0" scrolling="no"> </iframe> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> </body> </html> 

https://blog.csdn.net/m0_51700376/article/details/121492941

您可能还喜欢...

发表回复