成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

微信第三方應(yīng)用平臺(tái)授權(quán)公眾號(hào)/小程序

lcodecorex / 2970人閱讀

摘要:微信授權(quán)第三方應(yīng)用平臺(tái)微信第三方應(yīng)用平臺(tái)微信第三方應(yīng)用平臺(tái)微信第三方應(yīng)用平臺(tái)消息檢驗(yàn)微信第三方應(yīng)用平臺(tái)消息加解密微信公眾號(hào)小程序授權(quán)給第三方應(yīng)用平臺(tái)授權(quán)后的回調(diào)地址值授權(quán)類型,公眾號(hào),小程序授權(quán)鏈接接收微信消息自身推送事件,

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

    /*
    *微信公眾號(hào)/小程序授權(quán)給第三方應(yīng)用平臺(tái)
    *@params string $redirect_url : 授權(quán)后的回調(diào)地址
    *@params string $ticket : component_verify_ticket值
    *@params int $auth_type : 授權(quán)類型,1公眾號(hào),2小程序
    *return string $auth_url : 授權(quán)鏈接
     */
    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;
    }
    /*
    *接收微信消息自身推送事件,如:公眾號(hào)/小程序取消授權(quán),ticket值等
    *解密ticket值/AuthorizerAppid
    *對(duì)應(yīng)的URL鏈接在微信應(yīng)用第三方平臺(tái)中填寫的“授權(quán)事件接收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;
            //取消授權(quán)
            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;
            }
        }
    }
    /*
    *獲取微信第三方應(yīng)用平臺(tái)componet_access_token
    *@params string $component_ticket : 第三方應(yīng)用平臺(tái)ticket值(每10分鐘微信后臺(tái)將推送該值)
    *return string $compoent_access_token : 第三方應(yīng)用平臺(tái)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;
            }
        }
    }
    /*
    *獲取預(yù)授權(quán)碼pre_auth_code
    *@params string $component_access_token : 第三方應(yīng)用平臺(tái)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;
            }
        }
    }

    /*
    *發(fā)送https_post請(qǐng)求
    *@params string $url : URL鏈接
    *@params json $data : 發(fā)送JSON數(shù)據(jù)
    *return json $ret : 返回請(qǐng)求的結(jié)果
     */
    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;
    }
    /*
    *發(fā)送https_get請(qǐng)求
    *@params string $url : URL鏈接
    *return json $ret : 返回請(qǐng)求的結(jié)果
     */
    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...

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/29035.html

相關(guān)文章

  • 淺析微信支付:開發(fā)前的準(zhǔn)備

    摘要:本文是淺析微信支付系列文章的第三篇,主要會(huì)講一下在開發(fā)前的一些注意事項(xiàng)。淺析微信支付系列已經(jīng)更新兩篇了喲,沒有看過的朋友們可以看一下。開通微信支付需要注冊(cè)登陸微信商戶平臺(tái),微信支付相關(guān)的信息都需要在這個(gè)平臺(tái)上進(jìn)行操作。 本文是【淺析微信支付】系列文章的第三篇,主要會(huì)講一下在開發(fā)前的一些注意事項(xiàng)。 淺析微信支付系列已經(jīng)更新兩篇了喲~,沒有看過的朋友們可以看一下。 淺析微信支付:前篇大綱...

    yanest 評(píng)論0 收藏0
  • H5/web app/三方網(wǎng)頁 微信授權(quán)登錄 調(diào)研

    摘要:微信登錄用戶可使用微信帳號(hào)快速登錄你的網(wǎng)站,同一用戶使用微信登錄你的不同應(yīng)用和公眾帳號(hào),會(huì)對(duì)應(yīng)同一個(gè),以便進(jìn)行不同業(yè)務(wù)間的帳號(hào)統(tǒng)一微信授權(quán)登錄可分為掃碼登錄一般用于網(wǎng)頁微信開放平臺(tái)跳轉(zhuǎn)授權(quán)登錄第三方使用微信開放平臺(tái)微信內(nèi)置瀏覽器內(nèi)登錄一 微信登錄: 用戶可使用微信帳號(hào)快速登錄你的網(wǎng)站,同一用戶使用微信登錄你的不同應(yīng)用和公眾帳號(hào),會(huì)對(duì)應(yīng)同一個(gè)UnionID,以便進(jìn)行不同業(yè)務(wù)間的帳號(hào)統(tǒng)一 ...

    keithxiaoy 評(píng)論0 收藏0
  • 程序登錄、微信網(wǎng)頁授權(quán)(Java版)

    摘要:小程序登錄微信網(wǎng)頁授權(quán)版首先呢,登錄授權(quán)授權(quán)登錄,是一樣的意思,不用糾結(jié)。寫小程序授權(quán)登錄的代碼前,需要了解清楚與的區(qū)別,這里再簡單介紹一下騰訊有個(gè)微信開放平臺(tái),只有企業(yè)才能注冊(cè)賬號(hào),可理解為微信體系里,最頂級(jí)的賬號(hào)。 小程序登錄、微信網(wǎng)頁授權(quán)(Java版) 首先呢,登錄、授權(quán)、授權(quán)登錄,是一樣的意思,不用糾結(jié)。 寫小程序授權(quán)登錄的代碼前,需要了解清楚openid與unionid的區(qū)別...

    joywek 評(píng)論0 收藏0
  • 淺析微信支付:微信支付簡單介紹(程序、公眾號(hào)、App、H5)

    摘要:本文是淺析微信支付系列文章的第二篇,主要講解一下普通商戶接入的支付方式以及其中的不同之處。淺析微信支付前篇大綱微信支付是集成在微信客戶端的支付功能,用戶可以通過手機(jī)完成快速的支付流程。目前微信支付支持手機(jī)系統(tǒng)有蘋果安卓和。 本文是【淺析微信支付】系列文章的第二篇,主要講解一下普通商戶接入的支付方式以及其中的不同之處。 上篇文章講了本系列的大綱,沒有看過的朋友們可以看一下。 淺析微信支...

    shadowbook 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<