html5 天气预报接口,天气预报api接口 未来5-7天 - 数据接口 - NowAPI

header("Content-Type:text/html;charset=UTF-8");

function nowapi_call($a_parm){

if(!is_array($a_parm)){

return false;

}

//combinations

$a_parm['format']=empty($a_parm['format'])?'json':$a_parm['format'];

$apiurl=empty($a_parm['apiurl'])?'http://api.k780.com/?':$a_parm['apiurl'].'/?';

unset($a_parm['apiurl']);

foreach($a_parm as $k=>$v){

$apiurl.=$k.'='.$v.'&';

}

$apiurl=substr($apiurl,0,-1);

if(!$callapi=file_get_contents($apiurl)){

return false;

}

//format

if($a_parm['format']=='base64'){

$a_cdata=unserialize(base64_decode($callapi));

}elseif($a_parm['format']=='json'){

if(!$a_cdata=json_decode($callapi,true)){

return false;

}

}else{

return false;

}

//array

if($a_cdata['success']!='1'){

echo $a_cdata['msgid'].' '.$a_cdata['msg'];

return false;

}

return $a_cdata['result'];

}

$nowapi_parm['app']='weather.future';

$nowapi_parm['weaId']='1';

$nowapi_parm['appkey']='APPKEY';

$nowapi_parm['sign']='SIGN';

$nowapi_parm['format']='json';

$result=nowapi_call($nowapi_parm);

var_dump($result);

print_r($result);

#python

import json,urllib

from urllib import urlencode

url = 'http://api.k780.com'

params = {

'app' : 'weather.future',

'weaId' : '1',

'appkey' : 'APPKEY',

'sign' : 'SIGN',

'format' : 'json',

}

params = urlencode(params)

f = urllib.urlopen('%s?%s' % (url, params))

nowapi_call = f.read()

#print content

a_result = json.loads(nowapi_call)

if a_result:

if a_result['success'] != '0':

print a_result['result'];

else:

print a_result['msgid']+' '+a_result['msg']

else:

print 'Request nowapi fail.';

import java.net.*;

import java.io.*;

public class test{

public static void main(String args[]) throws Exception {

URL u=new URL("http://api.k780.com/?app=weather.future&weaId=1&appkey=APPKEY&sign=SIGN&format=json");

InputStream in=u.openStream();

ByteArrayOutputStream out=new ByteArrayOutputStream();

try {

byte buf[]=new byte[1024];

int read = 0;

while ((read = in.read(buf)) > 0) {

out.write(buf, 0, read);

}

} finally {

if (in != null) {

in.close();

}

}

byte b[]=out.toByteArray( );

System.out.println(new String(b,"utf-8"));

}

}

curl "http://api.k780.com/?app=weather.future&weaId=1&appkey=APPKEY&sign=SIGN&format=json"

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值