小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我有一个调用天气的 免费 api
http://wthrcdn.etouch.cn/weather_mini?city=城市名 天气查询api
可是加不了request 合法域名。。。怎么办。。。有没有可以用的天气api 后者怎么解决这个api的合法性
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请问你解决没有这个问题,我也是遇见了这个问题
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
感谢大神。。。我试试
比如https://779643127.lovesking.xyz/weather.php
这个文件就
<?php
$city = isset($_POST['city']) ? $_POST['city'] : '北京';//参数自己设置吧 post,get自己定,和小程序对应就行
$c = file_get_contents('http://wthrcdn.etouch.cn/weather_mini?city=城市名');
echo $c;
你的小程序把要查询的城市post到https://779643127.lovesking.xyz/weather.php就可以啊
小程序后台填写的域名就是https://779643127.lovesking.xyz
具体怎么操作,,有案例吗?。。。有点小白。。。我有一个空的域名。。https://779643127.lovesking.xyz
填写自己的合法url 支持https的,然后调用自己的url,自己的url再去请求http://wthrcdn.etouch.cn/weather_mini?city=城市名,中转一下就可以了。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请问你解决没有这个问题,我也是遇见了这个问题
感谢大神。。。我试试
比如https://779643127.lovesking.xyz/weather.php
这个文件就
<?php
$city = isset($_POST['city']) ? $_POST['city'] : '北京';//参数自己设置吧 post,get自己定,和小程序对应就行
$c = file_get_contents('http://wthrcdn.etouch.cn/weather_mini?city=城市名');
echo $c;
你的小程序把要查询的城市post到https://779643127.lovesking.xyz/weather.php就可以啊
小程序后台填写的域名就是https://779643127.lovesking.xyz
具体怎么操作,,有案例吗?。。。有点小白。。。我有一个空的域名。。https://779643127.lovesking.xyz
填写自己的合法url 支持https的,然后调用自己的url,自己的url再去请求http://wthrcdn.etouch.cn/weather_mini?city=城市名,中转一下就可以了。