php微信產生微信公眾號二維碼掃描進入公眾號帶參數

來源:互聯網
上載者:User

這篇文章主要介紹了關於php產生公眾號二維碼掃描進入公眾號帶參數,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

為了滿足使用者渠道推廣分析和使用者帳號綁定等情境的需要,公眾平台提供了產生帶參數二維碼的介面。使用該介面可以獲得多個帶不同情境值的二維碼,使用者掃描後,公眾號可以接收到事件推送。

目前有2種類型的二維碼:

1、臨時二維碼,是有到期時間的,最長可以設定為在二維碼產生後的30天(即2592000秒)後到期,但能夠產生較多數量。臨時二維碼主要用於帳號綁定等不要求二維碼永久儲存的業務情境
2、永久二維碼,是無到期時間的,但數量較少(目前為最多10萬個)。永久二維碼主要用於適用於帳號綁定、使用者來源統計等情境。

使用者掃描帶情境值二維碼時,可能推送以下兩種事件:

如果使用者還未關注公眾號,則使用者可以關注公眾號,關注後會將帶情境值關注事件推送給開發人員。

如果使用者已經關注公眾號,在使用者掃描後會自動進入會話,也會將帶情境值掃描事件推送給開發人員。

擷取帶參數的二維碼的過程包括兩步,首先建立二維碼ticket,然後憑藉ticket到指定URL換取二維碼。

建立二維碼ticket

每次建立二維碼ticket需要提供一個開發人員自行設定的參數(scene_id),分別介紹臨時二維碼和永久二維碼的建立二維碼ticket過程。

注意
expire_seconds 該二維碼有效時間,以秒為單位。 最大不超過2592000(即30天),此欄位如果不填,則預設有效期間為30秒。
action_name 二維碼類型,QR_SCENE為臨時的整型參數值,QR_STR_SCENE為臨時的字串參數值,QR_LIMIT_SCENE為永久的整型參數值,QR_LIMIT_STR_SCENE為永久的字串參數值
action_info 二維碼詳細資料
scene_id 情境值ID,臨時二維碼時為32位非0整型,永久二維碼時最大值為100000(目前參數只支援1–100000)
scene_str 情境值ID(字串形式的ID),字串類型,長度限制為1到64

<?phpnamespace app\api\model;set_time_limit(30);class WxQrcode{    //構造方法    static $qrcode_url = "https://api.weixin.qq.com/cgi-bin/qrcode/create?";        static $token_url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&";        static $qrcode_get_url = "https://mp.weixin.qq.com/cgi-bin/showqrcode?";    //產生二維碼    public function getEwm($fqid,$type = 1){        $appid = '你的appid';        $secret = '你的secret';                $ACCESS_TOKEN = $this->getToken($appid,$secret);                $url = $this->getQrcodeurl($ACCESS_TOKEN,$fqid,$type);        save_log('測試儲存的路徑'.$url.'fid'.$fqid);                return $this->DownLoadQr($url,time());    }        protected function getQrcodeurl($ACCESS_TOKEN,$fqid,$type = 1){        $url = self::$qrcode_url.'access_token='.$ACCESS_TOKEN;                if($type == 1){                    //產生永久二維碼            $qrcode= '{"action_name": "QR_LIMIT_SCENE", "action_info": {"scene": {"scene_str": '.$fqid.'}}}';        }else{                    //產生臨時二維碼            $qrcode = '{"expire_seconds": 604800, "action_name": "QR_STR_SCENE", "action_info": {"scene": {"scene_str": '.$fqid.'}}}';        }        $result = $this->http_post_data($url,$qrcode);                $oo = json_decode($result[1]);                if (empty($oo->ticket)){                    return false;        }                if(!$oo->ticket){                    $this->ErrorLogger('getQrcodeurl falied. Error Info: getQrcodeurl get failed');                    exit();        }        $url = self::$qrcode_get_url.'ticket='.$oo->ticket.'';                return $url;    }        protected function getToken($appid,$secret){        $ACCESS_TOKEN = file_get_contents(self::$token_url."appid=$appid&secret=$secret");                $ACCESS_TOKEN = json_decode($ACCESS_TOKEN);                $ACCESS_TOKEN = $ACCESS_TOKEN->access_token;                return $ACCESS_TOKEN;    }        protected function http_post_data($url, $data_string) {        $ch = curl_init();        curl_setopt($ch, CURLOPT_POST, 1);        curl_setopt($ch, CURLOPT_URL, $url);        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);        curl_setopt($ch, CURLOPT_HTTPHEADER, array(                        'Content-Type: application/json; charset=utf-8',                        'Content-Length: ' . strlen($data_string))        );        ob_start();        curl_exec($ch);        i        f (curl_errno($ch)) {                    $this->ErrorLogger('curl falied. Error Info: '.curl_error($ch));        }                $return_content = ob_get_contents();        ob_end_clean();                $return_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);                return array($return_code, $return_content);    }    //下載二維碼到伺服器    protected function DownLoadQr($url,$filestring){        if($url == ""){                    return false;        }                $filename = $filestring.rand(0,99999999999).'.jpg';        ob_start();        readfile($url);                $img=ob_get_contents();        ob_end_clean();                $size=strlen($img);                $fp2=fopen('static/qrcode/'.$filename,"a");                if(fwrite($fp2,$img) === false){                    $this->ErrorLogger('dolwload image falied. Error Info: 無法寫入圖片');                    exit();        }        fclose($fp2);                return 'static/qrcode/'.$filename;    }    //錯誤記錄檔    private function ErrorLogger($errMsg){        $logger = fopen('log.txt', 'a+');        fwrite($logger, date('Y-m-d H:i:s')." Error Info : ".$errMsg."\r\n");        fclose($logger);    }}

以上就是本篇文章的全部內容了,更多相關內容請關注topic.alibabacloud.com。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.