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

溫馨提示×

溫馨提示×

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

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

PHP中怎么判斷用戶是否關注該公眾號

發布時間:2021-06-29 17:12:56 來源:億速云 閱讀:545 作者:Leah 欄目:編程語言

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;
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

php
AI

天台县| 东阿县| 黄陵县| 黔江区| 普兰店市| 长乐市| 库尔勒市| 河曲县| 彭州市| 扎赉特旗| 新丰县| 酒泉市| 星子县| 民和| 成都市| 仁布县| 沽源县| 固镇县| 宽甸| 依兰县| 大田县| 新干县| 淮滨县| 祁阳县| 乐昌市| 新泰市| 北宁市| 镇江市| 新巴尔虎左旗| 和龙市| 游戏| 衡阳市| 金坛市| 时尚| 新宁县| 库伦旗| 若尔盖县| 宜丰县| 香港| 梓潼县| 武乡县|