学习历程微信天气预报小demo
Posted locqj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习历程微信天气预报小demo相关的知识,希望对你有一定的参考价值。
实现天气预报的demo,首先你得加载相应的api,这里推荐在百度api商城上面找,几乎平日开发所用到的api都可以在上面找到,什么短信验证码,天气预报,诸如此类(在下一个博文我会讲解如何实现手机验证码验证)。
我这里是使用
然后里面可以使用多种查询方式,城市拼音,城市名。。。
我这是选择了城市名
<?php
/**
* wechat php test
*/
//define your token
define("TOKEN", "weixin");
$wechatObj = new wechatCallbackapiTest();
if($_GET['echostr'])
$wechatObj->valid();
else
$wechatObj->responseMsg();
$wechatObj-> receiveEvent($object);
class wechatCallbackapiTest
public function valid()
$echoStr = $_GET["echostr"];
//valid signature , option
if($this->checkSignature())
echo $echoStr;
exit;
public function responseMsg()
//get post data, May be due to the different environments
$postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
//extract post data
if (!empty($postStr))
/* libxml_disable_entity_loader is to prevent XML eXternal Entity Injection,
the best way is to check the validity of xml by yourself */
libxml_disable_entity_loader(true);
$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
$fromUsername = $postObj->FromUserName;
$toUsername = $postObj->ToUserName;
$keyword = trim($postObj->Content);
$time = time();
$textTpl = "<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[%s]]></MsgType>
<Content><![CDATA[%s]]></Content>
<FuncFlag>0</FuncFlag>
</xml>";
if(!empty( $keyword ))
$ch = curl_init();
$url = 'http://apis.baidu.com/apistore/weatherservice/cityname?cityname='.$keyword.'';
$header = array(
'apikey: bc841a5d8d78c80f4fdf29b9c3ce6653',
);
// 添加apikey到header
curl_setopt($ch, CURLOPT_HTTPHEADER , $header);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// 执行HTTP请求
curl_setopt($ch , CURLOPT_URL , $url);
$res = curl_exec($ch);
//var_dump(json_decode($res));
$q= json_decode($res,true);
$a ="城市:".$q['retData']['city']."\\n"."天气:".$q['retData']['weather']."\\n"."温度:".$q['retData']['temp']."\\n";
$msgType = "text";
$contentStr = $a;
$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
echo $resultStr;
else
echo "Input something...";
else
echo "";
exit;
private function checkSignature()
// you must define TOKEN by yourself
if (!defined("TOKEN"))
throw new Exception('TOKEN is not defined!');
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"];
$token = TOKEN;
$tmpArr = array($token, $timestamp, $nonce);
// use SORT_STRING rule
sort($tmpArr, SORT_STRING);
$tmpStr = implode( $tmpArr );
$tmpStr = sha1( $tmpStr );
if( $tmpStr == $signature )
return true;
else
return false;
?>
这里是需要部署到服务器的代码,并且在你公众号中把你部署的地址,在你的微信公众号中接口配置信息中写入,这里要注意你的token是否与你代码中的token一致,有时候你的receiveMeg写在外面在接口配置时会报错,你可以先注释掉,等你的接口配置通过然后你再把代码重新部署到服务器上面。
还有一点需要注意的是,你在注册百度api商城中,在个人信息中可以看到自己的apikey,记得填入代码相应位置。不然不能调用该接口。
以上是关于学习历程微信天气预报小demo的主要内容,如果未能解决你的问题,请参考以下文章