微信公众平台开发

接入微信公众平台开发,开发者需要按照如下步骤完成:

1)首先在网页端打开微信公众号登录进去,左侧的 开发-->开发者工具-->公众平台测试帐 号扫码登录进去;2)把代码传到新浪云上复制新浪云的链接,3)把新浪云上的链接复制到在微信公众平台上
屏幕快照 2016-07-27 下午7.56.45.png

3)在新浪云编辑代码上上传wx_sample.php文件;


屏幕快照 2016-07-27 下午8.01.56.png

4)在新浪云建立数据库共享型数据库点击管理MySQL;


微信公众平台开发_第1张图片
屏幕快照 2016-07-27 下午8.12.19.png

5)在数据库中建立一个ticket表 2个字段点击执行
微信公众平台开发_第2张图片
屏幕快照 2016-07-27 下午8.16.25.png

建成之后是这样的:
微信公众平台开发_第3张图片
屏幕快照 2016-07-27 下午8.19.23.png

在数据库中再建一个token表,和上面的格式一样这样就建好数据库了;
在jssdk(微信接口端)链接数据库里面的token和ticket;

1、填写服务器配置
2、验证服务器地址的有效性
3、依据接口文档实现业务逻辑

第一步:填写服务器配置

微信公众平台开发_第4张图片
屏幕快照 2016-06-13 下午7.32.35.png

其中URL为验证消息的确来自微信服务器所存的PHP文件的路径;
Token为自己填写的任意字符,后面还会用到;

第二步:验证消息的确来自微信服务器

保存以下php代码并打包上传到服务器

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 = "
                            
                            
                            %s
                            
                            
                            0
                            ";
                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需要拼接上去

https://api.weixin.qq.com/sns/oauth2/access_token?appid=[APPID]&secret=[SECRET]&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";

而此时获取查询结果可已通过查询

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);
?>

你可能感兴趣的:(微信公众平台开发)