您好,登錄后才能下訂單哦!
PHP中怎么判斷用戶是否關注該公眾號,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
const _Biz = '自己的微信公眾號biz參數';//用于直接跳轉到一鍵關注公眾號頁面 protected $appid = "your appid"; protected $appsecret = "your appsecret "; public $url_wxcallback = "微信授權后的回調地址(會接收到code)"; public $url = "如果關注了需要跳轉的地址"; /** * 判斷是否關注該公眾號 */ public function isGz() { $param = $_GET['id'] ?? ''; //傳的某個參數 //跳轉到微信網頁授權頁 $this->getCode($this->appid, $this->url_wxcallback, $param ,'snsapi_base'); } /** * 封裝的微信授權調用鏈接跳轉 */ public function getCode($appId, $redirect_uri, $state=1, $scope='snsapi_base', $response_type='code'){ $url = 'https://open.weixin.qq.com/connect/oauth3/authorize?appid='.$appId.'&redirect_uri='.$redirect_uri.'&response_type='.$response_type.'&scope='.$scope.'&state='.$state.'#wechat_redirect'; header('Location: '.$url, true, 301); } /** * 微信授權后的回調方法 */ public function callback(){ $isconcern = 0;// 默認未關注 $code = $_GET['code'] ?? ''; $id= $_GET['state'] ?? '';//前面傳的 param 參數 $token = self::getToken($this->appid, $this->appsecret); $accessTokenInfo = self::getAccessToken($code, $this->appid, $this->appsecret); $openId = $accessTokenInfo['openid']; $accessToken = $accessTokenInfo['access_token']; $userInfo = self::getUserInfo($openId, $token['access_token']); if($userInfo['subscribe'] == 1){ $isconcern = 1; // 已關注 header('Location: '.$this->url.'?id='.$id, true, 301);exit(); } $isconcern = 0; //未關注 //1 展示關注二維碼圖片 長按關注 echo('<h3>請長按圖片關注該公眾號</h3>'); echo "<img src='/static/img/gzh_qrcode.jpg'>"; exit(); //2 跳轉到一鍵關注公眾號頁面(棄用:因為非在直接在微信打開此鏈接的 該頁面沒有關注按鈕) //$gzh_url = "https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=".self::_Biz."&scene=110#wechat_redirect"; //header('Location: '.$gzh_url); } static function getToken($appid, $appsecret){ $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$appsecret; return self::geturl($url); } static function getAccessToken($code, $appid, $appsecret, $grant_type='authorization_code'){ $url = 'https://api.weixin.qq.com/sns/oauth3/access_token?appid='.$appid.'&secret='.$appsecret.'&code='.$code.'&grant_type='.$grant_type.''; return self::geturl($url); } static function getUserInfo($openId, $token){ $url = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token='.$token.'&openid='.$openId.'&lang=zh_CN'; return self::geturl($url); } /* * 封裝的curl請求方法 */ static function geturl($url){ $headerArray =array("Content-type:application/json;","Accept:application/json"); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); curl_close($ch); $output = json_decode($output,true); return $output; }
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。