91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php如何獲取微信openid

發布時間:2020-10-29 10:28:06 來源:億速云 閱讀:156 作者:小新 欄目:編程語言

小編給大家分享一下php如何獲取微信openid,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

使用微信接口,無論是自動登錄還是微信支付我們首先需要獲取的就是openid,獲取openid的方式有兩種,一種是在關注的時候進行獲取,這種訂閱號就可以獲取的到,第二種是通過網頁授權獲取,這種獲取需要的是認證服務號。

今天我要說的是第二種網頁授權獲取openid。下面是我寫的一個關于獲取openid的類

<?php
/**
 * 微信授權相關接口
 * 
 * @link http://www.phpddt.com
 */
class Wchat
{
      private $app_id = 'wx444444444444';
      private $app_secret = '77777777';
     private $state='aaaa';
   /**
     * 獲取微信授權鏈接
     * 
     * @param string $redirect_uri 跳轉地址
     * @param mixed $state 參數
     */
    public function get_authorize_url($redirect_uri = '', $state = '')
    {
        $redirect_uri = urlencode($redirect_uri);
        return "https://open.weixin.qq.com/connect/oauth3/authorize?appid={$this->app_id}&redirect_uri={$redirect_uri}&response_type=code&scope=snsapi_userinfo&state={$state}#wechat_redirect";
    }
     /**
     * 獲取微信openid
     */
    public function getOpenid($turl)
    {
        if (!isset($_GET['code'])){
            //觸發微信返回code碼
            
             $url=$this->get_authorize_url($turl, $this->state);
            
            Header("Location: $url");
            exit();
        } else {
            //獲取code碼,以獲取openid
            $code = $_GET['code'];
            $access_info = $this->get_access_token($code);
            return $access_info;
        }
        
    }
    /**
     * 獲取授權token網頁授權
     * 
     * @param string $code 通過get_authorize_url獲取到的code
     */
    public function get_access_token($code = '')
    {
      $appid=$this->app_id;
      $appsecret=$this->app_secret;
      
        $token_url = "https://api.weixin.qq.com/sns/oauth3/access_token?appid=".$appid."&secret=".$appsecret."&code=".$code."&grant_type=authorization_code";
        //echo $token_url;
        $token_data = $this->http($token_url);
       // var_dump( $token_data);
        if($token_data[0] == 200)
        {
            $ar=json_decode($token_data[1], TRUE);
            return $ar;
        }
        
        return $token_data[1];
    }
    
    
    public function http($url, $method='', $postfields = null, $headers = array(), $debug = false)
    {
        $ci = curl_init();
        /* Curl settings */
        curl_setopt($ci, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
        curl_setopt($ci, CURLOPT_CONNECTTIMEOUT, 30);
        curl_setopt($ci, CURLOPT_TIMEOUT, 30);
        curl_setopt($ci, CURLOPT_RETURNTRANSFER, true);
 
        switch ($method) {
            case 'POST':
                curl_setopt($ci, CURLOPT_POST, true);
                if (!empty($postfields)) {
                    curl_setopt($ci, CURLOPT_POSTFIELDS, $postfields);
                    $this->postdata = $postfields;
                }
                break;
        }
        curl_setopt($ci, CURLOPT_URL, $url);
        curl_setopt($ci, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($ci, CURLINFO_HEADER_OUT, true);
 
        $response = curl_exec($ci);
        $http_code = curl_getinfo($ci, CURLINFO_HTTP_CODE);
 
        if ($debug) {
            echo "=====post data======\r\n";
            var_dump($postfields);
 
            echo '=====info=====' . "\r\n";
            print_r(curl_getinfo($ci));
 
            echo '=====$response=====' . "\r\n";
            print_r($response);
        }
        curl_close($ci);
        return array($http_code, $response);
    }
 
}
?>

getOpenid($turl)這個方法就是獲取openid的方法。前端調用代碼如下:

      $openid=isset($_COOKIE['openid'])?$_COOKIE['openid']:'';
        
            if(empty($openid))
            {
                $wchat=new wchat();
                $t_url='http://'.$_SERVER['HTTP_HOST'].'/user.php?act=register';
                
                $info=$wchat->getOpenid($t_url);
                
                if($info){
                     $openid=$info['openid'];
                  setcookie('openid',$openid,time()+86400*30);    
                    
                }
                
            }

以上是php如何獲取微信openid的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

寿阳县| 日喀则市| 玛纳斯县| 久治县| 和顺县| 莆田市| 滕州市| 江西省| 郸城县| 永吉县| 革吉县| 新巴尔虎右旗| 民勤县| 蓬溪县| 安平县| 广元市| 宝清县| 章丘市| 墨竹工卡县| 分宜县| 洪湖市| 临夏市| 青海省| 皮山县| 石城县| 颍上县| 邵阳市| 峨眉山市| 大邑县| 江北区| 邛崃市| 济源市| 公主岭市| 射阳县| 正蓝旗| 新宾| 许昌县| 图片| 大渡口区| 扬州市| 双江|