您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。