本篇文章给大家谈谈api接口平台天气,以及天气API接口对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。
今天给各位分享api接口平台天气的知识,其中也会对天气API接口进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!
本文目录一览:
天气预报API接口是什么?
天气预报API接口是气象服务商为客户提供服务的唯一接口。拿墨迹赤必为例,跟客户充分沟通后了解客户的实际需求,从而对现有的数据进行调整,符合客户的需求形成API接口,让客户接入,这样就形成了一个完整的服务。所以说API接口并不是一个很神秘的东西,只不过是企业和客户之间的一条服务纽带。
如何使用百度天气预报API接口
百度API Key申请地址api接口平台天气:http://lbsyun.baidu.com/apiconsole/key
创建应用 如图api接口平台天气:
提交后得到API Key ,运行结果如下:
扩展资料:
API(Application Programming Interface,应用程序编程接口)是一些预先定义api接口平台天气的函数,目的是提供应用程序与开发人员基于某软件或硬件得以访问一组例程的能力,而又无需访问源码,或理解内部工作机制的细节。
API函数包含在Windows系统目录下的动态连接库文件中。Windows API是一套用来控制Windows的各个部件的外观和行为的预先定义的Windows函数。
参考资料:百度百科-api接口
如何使用PHP调用API接口实现天气查询功能
最近在做微信公众平台测试时api接口平台天气,想在里面子菜单上添加查询未来几天(包括今天)天气api接口平台天气的功能,就查找了下好用的天气预报查询接口API,使用比较多的有api接口平台天气:国家气象局天气接口、新浪天气预报接口、百度天气预报接口、google天气接口、Yahoo天气接口等等,api接口平台天气我使用的是百度提供的免费天气查询接口API,下面与大家分享下...
1、查询方式:
百度提供的是根据纬度和城市名查询天气情况
2、接口事例:
3、接口参数说明:
4、返回结果说明:
5、
//城市名
$city = '上海';
//对json格式的字符串进行编码
$arr =json_decode($str,TRUE);
print_r($atr);
//城市名
$city = '上海';
//获取json格式的数据
$str =file_get_contents("http://api.map.baidu.com/telematics/v3/weather?location=".$city."output=jsonak=5slgyqGDENN7Sy7pw29IUvrZ");
//对json格式的字符串进行编码
$arr =json_decode($str,TRUE);
print_r($atr);
6、返回页面的是json编码后的数据:
[plain] view plain copy print?
<meta charset="UTF-8"
Array
(
[error] = 0
[status] = success
[date] = 2014-03-17
[results] = Array
(
[0] = Array
(
[currentCity]= 上海
[weather_data]= Array
(
[0]= Array
(
[date] = 周一(今天, 实时:19℃)
[dayPictureUrl] =http://api.map.baidu.com/images/weather/day/qing.png
[nightPictureUrl] =http://api.map.baidu.com/images/weather/night/qing.png
[weather] = 晴
[wind] = 西南风3-4级
[temperature] = 13℃
)
[1] = Array
(
[date]= 周二
[dayPictureUrl] =http://api.map.baidu.com/images/weather/day/duoyun.png
[nightPictureUrl] = http://api.map.baidu.com/images/weather/night/yin.png
[weather]= 多云转阴
[wind]= 东北风3-4级
[temperature] = 24 ~ 9℃
)
[2] = Array
(
[date]= 周三
[dayPictureUrl] =http://api.map.baidu.com/images/weather/day/zhongyu.png
[nightPictureUrl] = http://api.map.baidu.com/images/weather/night/xiaoyu.png
[weather]= 中雨转小雨
[wind]= 东北风3-4级
[temperature] = 15 ~ 8℃
)
[3] = Array
(
[date]= 周四
[dayPictureUrl] =http://api.map.baidu.com/images/weather/day/duoyun.png
[nightPictureUrl] =http://api.map.baidu.com/images/weather/night/qing.png
[weather]= 多云转晴
[wind]= 北风3-4级
[temperature] = 14 ~ 6℃
)
)
)
)
)
<meta charset="UTF-8"
Array
(
[error] = 0
[status] = success
[date] = 2014-03-17
[results] = Array
(
[0] = Array
(
[currentCity]= 上海
[weather_data]= Array
(
[0]= Array
(
[date] = 周一(今天, 实时:19℃)
[dayPictureUrl] =http://api.map.baidu.com/images/weather/day/qing.png
[nightPictureUrl] =http://api.map.baidu.com/images/weather/night/qing.png
[weather] = 晴
[wind] = 西南风3-4级
[temperature] = 13℃
)
[1] = Array
(
[date]= 周二
[dayPictureUrl] =http://api.map.baidu.com/images/weather/day/duoyun.png
[nightPictureUrl] = http://api.map.baidu.com/images/weather/night/yin.png
[weather]= 多云转阴
[wind]= 东北风3-4级
[temperature] = 24 ~ 9℃
)
[2] = Array
(
[date]= 周三
[dayPictureUrl] =http://api.map.baidu.com/images/weather/day/zhongyu.png
[nightPictureUrl] = http://api.map.baidu.com/images/weather/night/xiaoyu.png
[weather]= 中雨转小雨
[wind]= 东北风3-4级
[temperature] = 15 ~ 8℃
)
[3] = Array
(
[date]= 周四
[dayPictureUrl] =http://api.map.baidu.com/images/weather/day/duoyun.png
[nightPictureUrl] =http://api.map.baidu.com/images/weather/night/qing.png
[weather]= 多云转晴
[wind]= 北风3-4级
[temperature] = 14 ~ 6℃
)
)
)
)
)
7、PHP中自带了处理json格式字符串的内置函数,下面做一个事例,并给出完整代码:
[php] view plain copy print?
<metacharset="UTF-8"
<?php
//城市名
$city = '上海';
//获取json格式的数据
$str = file_get_contents("http://api.map.baidu.com/telematics/v3/weather?location=".$city."output=jsonak=5slgyqGDENN7Sy7pw29IUvrZ");
//对json格式的字符串进行编码
$arr = json_decode($str,TRUE);
echo "城市:".$arr['results'][0]['currentCity']." 日期:".$arr['date']."<br /<br /";
foreach($arr['results'][0]['weather_data']as $val)
{
echo $val['date']."<br/";
echo "天气:{$val['weather']}<br/";
echo "风向:{$val['wind']}<br/";
echo "温度:{$val['temperature']}<br/<br /";
}
?
<metacharset="UTF-8"
<?php
//城市名
$city = '上海';
//获取json格式的数据
$str = file_get_contents("http://api.map.baidu.com/telematics/v3/weather?location=".$city."output=jsonak=5slgyqGDENN7Sy7pw29IUvrZ");
//对json格式的字符串进行编码
$arr = json_decode($str,TRUE);
echo "城市:".$arr['results'][0]['currentCity']." 日期:".$arr['date']."<br /<br /";
foreach($arr['results'][0]['weather_data']as $val)
{
echo $val['date']."<br/";
echo "天气:{$val['weather']}<br/";
echo "风向:{$val['wind']}<br/";
echo "温度:{$val['temperature']}<br/<br /";
}
?
8、返回的内容如下:
彩云天气API怎么获取
腾讯位置服务平台提供获取经纬度的接口
彩云天气申请开发者api调用对应经纬度的天气状况
测试环境选择了自己的iphone上的JSbox来运行一个简单的js脚本:
//简单思路就是 获取ip再获取天气信息
const locationKey = "XXXXXXXXXXXXX"
const weatherKey = "XXXXXXXXXXXX"
const apiList = {
location:"https://apis.map.qq.com/ws"
}
function getLonLat(){
$http.get({
url: `${apiList.location}/location/v1/ip?key=${locationKey}`,
handler: (resp) = {
let location = resp.dataresp.data.resultresp.data.result.location
getLocation(location)
}
});
}
function getLocation(location){
$http.get({
url: `${apiList.location}/geocoder/v1/?key=${locationKey}location=${location.lat},${location.lng}`,
handler: (resp) = {
var data = resp.data;
$console.info(data.result.formatted_addresses.recommend);
}
});
}
/**
*
* @param {lat:"",lng:""} location
*/
function getWeather(location){
$http.get({
url: `${apiList.weather}/${weatherKey}/${location.lng},${location.lat}/weather.json`,
handler: (resp) = {
let data = resp.data;
console.info(data)
//运行结果参照彩云天气https://open.caiyunapp.com/%E9%80%9A%E7%94%A8%E9%A2%84%E6%8A%A5%E6%8E%A5%E5%8F%A3/v2.5
}
});
}
getLonLat()
2|0顿时醒悟
写到这其实我只是想测试一下两个接口的基本用法以及可用之处,然后突然想到jsbox里面内置的$location可以直接获取到设备的位置信息,通过这样获取到的位置坐标会比ip的更加精准
//根据原生SDK获取手机位置
function getPhoneLoc(){
$location.fetch({
handler: function(resp) {
var lat = resp.lat;
var lng = resp.lng;
var alt = resp.alt;
let loc = {lat:lat,lng:lng}
getLocation(loc)
}
});
}
3|0最后运行结果
关于api接口平台天气和天气API接口的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。
api接口平台天气的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于天气API接口、api接口平台天气的信息别忘了在本站进行查找喔。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
暂时没有评论,来抢沙发吧~