接入微信公众平台开发,开发者需要按照如下步骤完成:
1)首先在网页端打开微信公众号登录进去,左侧的 开发-->开发者工具-->公众平台测试帐 号扫码登录进去;2)把代码传到新浪云上复制新浪云的链接,3)把新浪云上的链接复制到在微信公众平台上
3)在新浪云编辑代码上上传wx_sample.php文件;
4)在新浪云建立数据库共享型数据库点击管理MySQL;
5)在数据库中建立一个ticket表 2个字段点击执行
建成之后是这样的:
在数据库中再建一个token表,和上面的格式一样这样就建好数据库了;
在jssdk(微信接口端)链接数据库里面的token和ticket;
1、填写服务器配置
2、验证服务器地址的有效性
3、依据接口文档实现业务逻辑
第一步:填写服务器配置
其中URL为验证消息的确来自微信服务器所存的PHP文件的路径;
Token为自己填写的任意字符,后面还会用到;
第二步:验证消息的确来自微信服务器
保存以下php代码并打包上传到服务器
<?php
/**
* wechat php test
*/
//define your token
define("TOKEN", "Token"); //这里的token即为上面填写的token
$wechatObj = new wechatCallbackapiTest();
$wechatObj->valid();
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 ))
{
$msgType = "text";
$contentStr = "Welcome to wechat world!";
$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;
}
}
}
?>
第三步:依据接口文档实现业务逻辑
1.网页授权获取用户基本信息
(首先需要在权限列表中网页帐号->[网页授权获取用户基本信息]修改权限,填写自己的网站网址);
第一步:用户同意授权,获取code
(中括号内的为需要填写的自己的信息)(后面的访问也是这样访问)
https://open.weixin.qq.com/connect/oauth2/authorize?appid=
[APPID]&redirect_uri=[REDIRECT_URI]&response_type=code&scope=[SCOPE]&state=STATE#wechat_redirect```
此时PHP代码则可以获取code
header("Content-type:text/html;charset=utf-8");
$code=$_GET['code'];
echo $code;
**第二步:通过code换取网页授权access_token**
获取code后,请求以下链接获取access_token:
(中括号内的为需要填写的自己的信息)
[APPID]为测试号管理的 appID 账号
[SECRET]为测试号管理的appsecret账号
[CODE]为第三步第一小步获取的code需要拼接上去
php代码示例
header("Content-type:text/html;charset=utf-8");
$code=$_GET['code'];
$url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=wx743540570fe83a69&secret=d23fa1d3e81aeaa0a9b80e1829fd9642&code=".$code."&grant_type=authorization_code";
而此时获取查询结果可已通过查询
<?php
header("Content-type:text/html;charset=utf-8");
$code=$_GET['code'];
$url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=wx743540570fe83a69&secret=d23fa1d3e81aeaa0a9b80e1829fd9642&code=".$code."&grant_type=authorization_code";
$res=json_decode(file_get_contents($url));
$access_token=$res->access_token;
$open=$res->openid;
$infourl="https://api.weixin.qq.com/sns/userinfo?access_token=".$access_token."&openid=".$open."&lang=zh_CN";
$infores=json_decode(file_get_contents($infourl));
var_dump($infores);
?>