thinkphp5微信公众号二维码扫码关注推广二维码事件实现,
给出实现的全部方法:
获取二维码,让微信公众号跳转到以下代码的code方法即可,用户点击二维码后,通过二维码获取关注用户信息及二维码推广者信息,以及判断用户是否关注,具体代码逻辑在以下代码responseMsg方法,但需要在公众平台url配置接入到以下代码的index方法,用户关注后,则通过index方法访问responseMsg方法。
```
<?php
namespace app\home\controller;
define("TOKEN", "xieqianghui1234");
use think\Controller;
use app\home\model\reIndex;
class Index extends Controller{
private $appId;
private $appSecret;
public function __construct()
{
$this->appId = 'wx17aaa90e1f107245';
$this->appSecret= '8bd13c549f07c6e365f818e113dee821';
}
// 获取code
public function code(){
$appid = 'wx17aaa90e1f107245';
$redirecturl = urlencode("http://www.neophiledesign.com/kfgzh/public/index.php/home/index/member");
$url = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid='.$appid.'&redirect_uri='.$redirecturl.'&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect';
header('location:'.$url);
}
// 通过ticket换取二维码
public function wechatcode($ticket)
{
$url = 'https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket='.urlencode($ticket);
return $this->getjson($url);
}
// 二维码呈现
public function member(){
$code = $_GET['code'];
$url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$this->appId.'&secret='.$this->appSecret.'&code='.$code.'&grant_type=authorization_code';
$res = $this->curl_post($url);
// 用户openid
$openid = $res['openid'];
$recode = (new reIndex)->reselect($openid);
header("Content-Type: image/jpeg;text/html; charset=utf-8");
if(!$recode){
$rand = mt_rand(0,9).mt_rand(0,9).mt_rand(0,9).mt_rand(0,9);
$arr = array();
$arr = array(
'openid' => $openid,
'code' => $rand,
);
(new reIndex)->readd($arr);
$res = $this->reindex();
$access_token = $res['access_token'];
// 获取ticket
$url = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=".$access_token;
$list = array();
$list = array(
'action_name' => 'QR_LIMIT_SCENE',
'action_info' => array(
'scene' => array(
'scene_id' => $rand,
),
),
);
// 获取ticket
$res = $this->curl_post($url,json_encode($list),'POST');
// 通过ticket换取二维码
$res = $this->wechatcode($res['ticket']);
$file = fopen(dirname(dirname(dirname(__DIR__)))."/image/".$rand."upload.jpg","w");
fwrite($file,$res);//写入
fclose($file);//关闭
$img = "http://www.neophiledesign.com/kfgzh/image/".$rand."upload.jpg";
}else{
$img = "http://www.neophiledesign.com/kfgzh/image/".$recode."upload.jpg";
}
echo "<img src=$img />";
}
// 获取access_token
public function reindex(){
$appid = 'wx17aaa90e1f107245';
$secret = '8bd13c549f07c6e365f818e113dee821';
$url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$secret;
$res = $this->curl_post($url);
return $res;
}
// 获取用户信息及openid
public function retest($access_token){
$url = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token='.$access_token.'&openid=OPENID&lang=zh_CN';
return $this->getJson($url);
}
// token验证
public function index(){
if ($this->checkSignature()==false) {
die('非法请求');
}
if (isset($_GET["echostr"])) {
$echostr = $_GET["echostr"];
echo $echostr;
exit();
} else {
$this->responseMsg();
}
}
public function responseMsg(){
//get post data, May be due to the different environments
$postStr = file_get_contents("php://input");
if (!empty($postStr)){
libxml_disable_entity_loader(true);
$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
$fromUsername = $postObj->FromUserName;
$toUsername = $postObj->ToUserName;
// $keyword = trim($postObj->Content);
$time = time();
$textTpl = "<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[%s]]></MsgType>
<Content><![CDATA[%s]]></Content>
</xml>";
if($postObj->MsgType == 'event'){
$res = $this->reindex();
// 获取access_token
$access_token = $res['access_token'];
$msgType = "text";
// 通过二维码进入
if(isset($postObj->EventKey) && $postObj->EventKey != ''){
$tgzid = $postObj->EventKey;
if(substr($tgzid,8)){
$retgzid = substr($tgzid,8);
$openid = (new reIndex)->rereselect($retgzid);
if($openid != $fromUsername){
$sharesum = (new reIndex)->reupdate($openid);
$url = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token='.$access_token.'&openid='.$fromUsername.'&lang=zh_CN';
$re = json_decode($this->getjson($url),true);
$contentStr = '你好,'.$re['nickname'].'欢迎关注香港葵芳!';
$url = 'https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token='.$access_token;
$data = array();
$data = array(
"touser" => $openid,
"msgtype" => "text",
"text" =>
array(
"content" => "已成功分享给用户".$re['nickname']."已成功分享".$sharesum.'次'
)
);
$res = $this->getjson($url,json_encode($data,JSON_UNESCAPED_UNICODE));
var_dump($res);
}
}else{
$url = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token='.$access_token.'&openid='.$fromUsername.'&lang=zh_CN';
$re = json_decode($this->getjson($url),true);
$contentStr = '你好,'.$re['nickname'].'欢迎关注香港葵芳!';
}
}else{
if($postObj->Event == 'subscribe'){
$url = 'https://api.weixin.qq.com/cgi-bin/user/info?access_token='.$access_token.'&openid='.$fromUsername.'&lang=zh_CN';
$re = json_decode($this->getjson($url),true);
$contentStr = '你好,'.$re['nickname'].'欢迎关注香港葵芳!';
}
}
$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
echo $resultStr;
}
}else {
exit;
}
}
//
public function curl_post($url, $data=null,$method='GET', $https=true)
{
// 创建一个新cURL资源
$ch = curl_init();
// 设置URL和相应的选项
curl_setopt($ch, CURLOPT_URL, $url);
//要访问的网站 //启用时会将头文件的信息作为数据流输出。
curl_setopt($ch, CURLOPT_HEADER, false);
//将curl_exec()获取的信息以字符串返回,而不是直接输出。
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if($https){
//FALSE 禁止 cURL 验证对等证书(peer's certificate)。
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
//验证主机 }
if($method == 'POST'){
curl_setopt($ch, CURLOPT_POST, true);
//发送 POST 请求 //全部数据使用HTTP协议中的 "POST" 操作来发送。
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
}
// 抓取URL并把它传递给浏览器
$content = curl_exec($ch);
//关闭cURL资源,并且释放系统资源
curl_close($ch);
return json_decode($content,true);
}
}
public function getjson($url,$data=null)
{
$curl = curl_init();
curl_setopt($curl,CURLOPT_URL,$url);
curl_setopt($curl, CURLOPT_HEADER,false);
curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,false);
//不为空,使用post传参数,否则使用get
if($data){
curl_setopt($curl,CURLOPT_POST,1);
curl_setopt($curl,CURLOPT_POSTFIELDS,$data);
}
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
$output = curl_exec($curl);
curl_close($curl);
return $output;
}
private function checkSignature()
{
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"];
$token = TOKEN;
$tmpArr = array($token, $timestamp, $nonce);
sort($tmpArr);
$tmpStr = implode( $tmpArr );
$tmpStr = sha1( $tmpStr );
if( $tmpStr == $signature ){
return true;
}else{
return false;
}
}
}
```
- 空白目录
- thinkcmf的权限管理
- thinkcmf+unicmf添加页面
- Thinkphp5做后台 Uni-app做前台解决跨域问题
- 组件
- h5跨域-uniapp
- thinkphp5 auth 教程
- thinkphp5Auth类
- uniapp添加与编辑的差别
- 常见的请求方式
- uni 单选回显数据_uniapp 页面跳转传值和接收
- uni-app 单选/多选/滑动 demo
- 关于uniapp checkbox多选框如何传值传数据
- uniApp 多选框checkbox ,判断是否选中
- uniapp添加复选框和获取复选框的值
- uni-app中全选多选单选
- uniapp多选框CheckBox 数据接收
- uniapp下拉列表单选框复选框实战demo(编辑或详情页)
- uni-data-CheckBox-OK
- js 字符串数组转换成数字数组
- js把字符串转为数组对象
- js中数组对象字符串的相互转换
- JS怎么把字符串数组转换成整型数组
- 小程序开发
- tp5.1跨域请求
- uniapp-h5跨域
- 新增
- order
- uni-app中调取接口的三种方式与封装uni.request()
- uView-checkbox
- 给u-view的u-select赋值
- uView-下拉框、复选框、单选框 数据发送及接收
- CURD操作
- thinkphp5.1增删改查
- TP5.1添加数据成功之后返回自增主键id
- Thinkphp实战之Request默认值except only 以及过滤参
- uni-app跨域解决方案
- thinkphp5.1+uni-app接口开发中跨域问题解决方案
- tp6 + uniapp 前后端跨域解决方案
- uniapp-token相关
- uniapp request请求封装包含token兼容多端,简单易用
- CORS.php
- ThinkPHP6 API开发前后端分离用户信息保存在后端的方法
- thinkphp的jwt(JSON Web Token)身份验证
- thinkphp6增删改查
- PHP模拟GET,POST请求
- php模拟get、post发送请求的6种方法
- thinkphp6
- uniapp封装网络请求
- thinkphp6搭建后端api接口jwt-auth
- uniapp实现APP微信登录流程
- [uni-app] 中保持用户登录状态
- 详解vue中localStorage的使用方法
- vue 实现通过vuex 存储值 在不同界面使用
- dispatch:异步操作,数据提交至 actions ,可用于向后台提交数据
- ThinkPHP6.0 + Vue + ElementUI + axios 的环境安装到实现 CURD 操作
- tp6错误集
- TP6 模型插入/添加数据,自动插入时间(自动时间戳)
- 手机不开机维修思路
- thinkphp6解决vue跨域问题
- 从0基础获取短视频去水印解析接口制作
- thinkphp5 删除缓存
- thinkPHP,怎么把json文件里面的数据导入数据库
- 数字转字符php
- php – 直接用curl下载远程文件
- thinkphp – 直接用curl下载远程文件
- apiAdmin安装
- echart
- thinkphp开发小程序推广分享带参数二维码生成
- php同比增加函数
- PHP获取同比上周、上一个月,上一个季度,去年时间区间
- “前3秒”金句100例,赶紧收藏起来!
- PHP配合微信公众号生成推广二维码
- thinkphp5+php微信公众号二维码扫码关注推广二维码事件实现
- 获取当前时间上一周的开始时间和结束时间
- TP6 查找指定工作日
- PHP 获取当天、近一周、本周、上月、本月、本季度、上季度时间方法大全
- php获取今日、昨日、本周、本月 日期方法
- Tp5+mysql按年季度月周日小时查询时无数据的时间段补0方法
- mysql按天统计的时候,该天没有数据也要统计为0
- 列出一星期的日期 无数据补0
- thinkphp6本周 上周 周一 周末日期
- 补全日期 无数据补0
- php+pv统计代码实现,Laravel 10 行代码实现简单的网站 pv uv 统计
- 通过API获取ip地址以及城市和运营商
- 获取访客信息
- 13行代码实现微信小程序设置概率触发激励视频阅读文章
- uniapp 微信小程序 获取场景值和场景值个性化参数
- 微信小程序分享小程序码的生成(带参数)以及参数的获取
- 小程序推广分享带参数二维码生成
- uniapp微信小程序生成对应页面二维码
- uniapp获取当前页面url
- uniapp微信小程序--微信登录
- 微信小程序,生成小程序码中scene参数的存放和获取问题
- uni-app 微信小程序生成二维码带参数
- uni-app 微信小程序如何把图片保存到本地相册?
- thinkPHP5使用assign()传递富文本,前端解析成HTML标签
- tp6解析编辑器里面的html标签原样输出
- PHP判断url链接是否被百度收录
- 微擎安装模块时提示 Failed to connect to we7.rewlkj.com port 80: Timed out
- 小程序码生成
- thinkphp开发小程序推广分享带参数二维码生成0
- tp3.2伪静态
- apiadmin安装教程-2022.8更新
- autojs事件代码
- uuuu
- thinkphp6: API 多版本控制