收藏
回答

request 合法域名 怎么使用http开头的api吗?

我有一个调用天气的  免费 api


http://wthrcdn.etouch.cn/weather_mini?city=城市名    天气查询api


可是加不了request 合法域名。。。怎么办。。。有没有可以用的天气api   后者怎么解决这个api的合法性


回答关注问题邀请回答
收藏

5 个回答

  • jie
    jie
    2018-03-03

    请问你解决没有这个问题,我也是遇见了这个问题

    2018-03-03
    有用
    回复
  • 🥕
    🥕
    2018-01-08

    感谢大神。。。我试试

    2018-01-08
    有用
    回复
  • 江小鱼
    江小鱼
    2018-01-08

    比如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

    2018-01-08
    有用
    回复
  • 🥕
    🥕
    2018-01-08

    具体怎么操作,,有案例吗?。。。有点小白。。。我有一个空的域名。。https://779643127.lovesking.xyz

    2018-01-08
    有用
    回复
  • 江小鱼
    江小鱼
    2018-01-08

    填写自己的合法url 支持https的,然后调用自己的url,自己的url再去请求http://wthrcdn.etouch.cn/weather_mini?city=城市名,中转一下就可以了。

    2018-01-08
    有用
    回复
登录 后发表内容