资讯专栏INFORMATION COLUMN

微信第三方应用平台授权公众号/小程序

lcodecorex / 2852人阅读

摘要:微信授权第三方应用平台微信第三方应用平台微信第三方应用平台微信第三方应用平台消息检验微信第三方应用平台消息加解密微信公众号小程序授权给第三方应用平台授权后的回调地址值授权类型,公众号,小程序授权链接接收微信消息自身推送事件,

component_appid     = $component_appid;
        $this->component_secret = $component_secret;
        $this->component_token     = $component_token;
        $this->component_key     = $component_key;
    }

    /*
    *微信公众号/小程序授权给第三方应用平台
    *@params string $redirect_url : 授权后的回调地址
    *@params string $ticket : component_verify_ticket值
    *@params int $auth_type : 授权类型,1公众号,2小程序
    *return string $auth_url : 授权链接
     */
    public function start_authorization($redirect_uri,$ticket,$auth_type)
    {
        $component_access_token = $this->get_component_access_token($ticket);
        $pre_auth_code = $this->get_pre_auth_code($component_access_token);
        return "https://mp.weixin.qq.com/cgi-bin/componentloginpage?component_appid=".$this->component_appid."&pre_auth_code=".$pre_auth_code."&redirect_uri=".urlencode($redirect_uri)."&auth_type=".$auth_type;
    }
    /*
    *接收微信消息自身推送事件,如:公众号/小程序取消授权,ticket值等
    *解密ticket值/AuthorizerAppid
    *对应的URL链接在微信应用第三方平台中填写的“授权事件接收URL”
     */
    public function receiveMsg()
    {
        require_once("crypt/wxBizMsgCrypt.php");
        $encryptMsg = isset($GLOBALS["HTTP_RAW_POST_DATA"]) ? $GLOBALS["HTTP_RAW_POST_DATA"] : file_get_contents("php://input");
        $xml_tree = new DOMDocument();
        $xml_tree->loadXML($encryptMsg);
        $xml_array = $xml_tree->getElementsByTagName("Encrypt");
        $encrypt = $xml_array->item(0)->nodeValue;
        $Prpcrypt = new Prpcrypt($this->component_key);
        $postData = $Prpcrypt->decrypt($encrypt, $this->component_appid);
        if($postData[0] != 0){
            return $postData[0];
        } else {
            $xml = new DOMDocument();
            $xml->loadXML($postData[1]);
            $array_a = $xml->getElementsByTagName("InfoType");
            $infoType = $array_a->item(0)->nodeValue;
            //取消授权
            if($infoType == "unauthorized") {
                $array_b = $xml->getElementsByTagName("AuthorizerAppid");
                $AuthorizerAppid = $array_b->item(0)->nodeValue;
            }
            //ticket值
            elseif($infoType == "component_verify_ticket") {
                $array_e = $xml->getElementsByTagName("ComponentVerifyTicket");
                $component_verify_ticket = $array_e->item(0)->nodeValue;
            }
        }
    }
    /*
    *获取微信第三方应用平台componet_access_token
    *@params string $component_ticket : 第三方应用平台ticket值(每10分钟微信后台将推送该值)
    *return string $compoent_access_token : 第三方应用平台access_token
     */
    private function get_component_access_token($component_verify_ticket)
    {

        $json = json_decode(file_get_contents("component_access_token.json"));
        if(isset($json->component_access_token) && !empty($json->component_access_token) && ($json->expires_in < time()) ){
            return $json->component_access_token;
        } else {
            $url = "https://api.weixin.qq.com/cgi-bin/component/api_component_token";
            $data = "{"component_appid":"".$this->component_appid."","component_appsecret":"".$this->component_secret."","component_verify_ticket":"".$component_verify_ticket.""}";
            $ret = json_decode($this->https_post($url,$data));
            if(isset($ret->component_access_token)) {
                $json = "{"component_access_token":"".$ret->component_access_token."","expires_in":"".(time() + $ret->expires_in).""}";
                file_put_contents("component_access_token.json",$json);
                return $ret->component_access_token;
            } else {
                return null;
            }
        }
    }
    /*
    *获取预授权码pre_auth_code
    *@params string $component_access_token : 第三方应用平台access_token
    *return json $ret : 返回pre_auth_code、expires_in
     */
    private function get_pre_auth_code($component_access_token)
    {
        $json = json_decode(file_get_contents("pre_auth_code.json"));
        if(isset($json->pre_auth_code) && !empty($json->pre_auth_code) && ($json->expires_in < time()) ){
            return $json->pre_auth_code;
        } else {
            $url = "https://api.weixin.qq.com/cgi-bin/component/api_create_preauthcode?component_access_token=".$component_access_token;
            $data = "{"component_appid":"".$this->component_appid.""}";
            $ret = json_decode($this->https_post($url,$data));
            if(isset($ret->pre_auth_code)) {
                $json = "{"pre_auth_code":"".$ret->pre_auth_code."","expires_in":"".(time() + $ret->expires_in).""}";
                file_put_contents("pre_auth_code.json",$json);
                return $ret->pre_auth_code;
            } else {
                return null;
            }
        }
    }

    /*
    *发送https_post请求
    *@params string $url : URL链接
    *@params json $data : 发送JSON数据
    *return json $ret : 返回请求的结果
     */
    private function https_post($url,$data)
    {
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, $url);
        if (!empty($data)){
            curl_setopt($curl, CURLOPT_POST, 1);
            curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
        }
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        $output = curl_exec($curl);
        curl_close($curl);
        return $output;
    }
    /*
    *发送https_get请求
    *@params string $url : URL链接
    *return json $ret : 返回请求的结果
     */
    private function https_get($url)
    {
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, $url); 
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE); 
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE); 
        curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
        curl_setopt($curl, CURLOPT_HEADER, FALSE) ; 
        curl_setopt($curl, CURLOPT_TIMEOUT,60);    
        if (curl_errno($curl)) {
            return "Errno".curl_error($curl);
        }
        else{$result=curl_exec($curl);}
        curl_close($curl);
        return $result;
    }
}



$link = mysqli_connect("localhost","root","root","weixin");
$sql = " select `appId`,`appSecret`,`token`,`encodingAesKey`,`component_verify_ticket`,`component_access_token` from `weixin` where `type` = 1 ";
$result = mysqli_query($link,$sql);
$component = [];
while ($row = mysqli_fetch_assoc($result)) {
    $component["appid"] = $row["appId"];
    $component["secret"] = $row["appSecret"];
    $component["token"] = $row["token"];
    $component["key"] = $row["encodingAesKey"];
    $component["ticket"] = $row["component_verify_ticket"];
    $component["component_access_token"] = $row["component_access_token"];
}
$authorize = new Authorize($component["appid"],$component["secret"],$component["token"],$component["key"]);
$auth_url = $authorize->start_authorization("http://www.baidu.com/user/authorize_back.html",$component["ticket"],1);
echo "".$auth_url."";
?>

crypt为微信官方消息解密demo包,下载地址:https://wximg.gtimg.com/shake...

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/29035.html

相关文章

  • 浅析微信支付:开发前的准备

    摘要:本文是浅析微信支付系列文章的第三篇,主要会讲一下在开发前的一些注意事项。浅析微信支付系列已经更新两篇了哟,没有看过的朋友们可以看一下。开通微信支付需要注册登陆微信商户平台,微信支付相关的信息都需要在这个平台上进行操作。 本文是【浅析微信支付】系列文章的第三篇,主要会讲一下在开发前的一些注意事项。 浅析微信支付系列已经更新两篇了哟~,没有看过的朋友们可以看一下。 浅析微信支付:前篇大纲...

    yanest 评论0 收藏0
  • H5/web app/三方网页 微信授权登录 调研

    摘要:微信登录用户可使用微信帐号快速登录你的网站,同一用户使用微信登录你的不同应用和公众帐号,会对应同一个,以便进行不同业务间的帐号统一微信授权登录可分为扫码登录一般用于网页微信开放平台跳转授权登录第三方使用微信开放平台微信内置浏览器内登录一 微信登录: 用户可使用微信帐号快速登录你的网站,同一用户使用微信登录你的不同应用和公众帐号,会对应同一个UnionID,以便进行不同业务间的帐号统一 ...

    keithxiaoy 评论0 收藏0
  • 程序登录、微信网页授权(Java版)

    摘要:小程序登录微信网页授权版首先呢,登录授权授权登录,是一样的意思,不用纠结。写小程序授权登录的代码前,需要了解清楚与的区别,这里再简单介绍一下腾讯有个微信开放平台,只有企业才能注册账号,可理解为微信体系里,最顶级的账号。 小程序登录、微信网页授权(Java版) 首先呢,登录、授权、授权登录,是一样的意思,不用纠结。 写小程序授权登录的代码前,需要了解清楚openid与unionid的区别...

    joywek 评论0 收藏0
  • 浅析微信支付:微信支付简单介绍(程序公众、App、H5)

    摘要:本文是浅析微信支付系列文章的第二篇,主要讲解一下普通商户接入的支付方式以及其中的不同之处。浅析微信支付前篇大纲微信支付是集成在微信客户端的支付功能,用户可以通过手机完成快速的支付流程。目前微信支付支持手机系统有苹果安卓和。 本文是【浅析微信支付】系列文章的第二篇,主要讲解一下普通商户接入的支付方式以及其中的不同之处。 上篇文章讲了本系列的大纲,没有看过的朋友们可以看一下。 浅析微信支...

    shadowbook 评论0 收藏0

发表评论

0条评论

最新活动
阅读需要支付1元查看
<