当前位置:首页 > PHP教程 > php高级应用 > 列表

php 微信扫码自动登陆注册例子

发布:smiling 来源: PHP粉丝网  添加日期:2016-01-20 16:24:37 浏览: 评论:0 

微信开发已经是现在程序员必须要掌握的一项基本的技术了,其实做过微信开发的都知道微信接口非常的强大做起来也非常的简单,这里我们一起来看一个微信自动登陆注册的例子.

php 微信扫码 pc端自动登陆注册 用的接口scope 是snsapi_userinfo,微信登陆一个是网页授权登陆,另一个是微信联合登陆

网页授权登陆:http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html

微信联合登陆:https://open.weixin.qq.com/cgi-bin/frame?t=home/web_tmpl&lang=zh_CN

一:首先把微信链接带个标识生成二维码

比如链接为 https://open.weixin.qq.com/connect/oauth2/authorize?appid=’.$appid.’&redirect_uri=’.$url.’&response_type=code&scope=snsapi_userinfo&state=1#wechat_redirect’  我们可以在state上做文章,因为state你传入什么微信那边返回什么

可以作为服务器与微信段的一个标识:

  1. public function creatqrAction(){ 
  2.  
  3. if($_GET['app']){ 
  4. $wtoken=$_COOKIE['wtoken']; 
  5. $postdata=$_SESSION['w_state']; 
  6. if($wtoken){ 
  7. $postdata=$wtoken
  8. include CONFIG_PATH . 'phpqrcode/'.'phpqrcode.php' 
  9. $sh=$this->shar1(); 
  10. $value="https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx138697ef383a9167&redirect_uri=http://www.xxx.net/login/wcallback&response_type=code&scope=snsapi_userinfo&state=".$postdata."&connect_redirect=1#wechat_redirect"
  11.  
  12. $errorCorrectionLevel = "L"
  13.  
  14. $matrixPointSize = "5"
  15.  
  16. QRcode::png($value, false, $errorCorrectionLevel$matrixPointSize); 
  17.  

此时生成了二维码 state是标识,phpqrcode可以在文章末尾下载,这样我们设置了回调地址http://www.xxx.net/login/wcallback

就可以在wcallback方法里面处理数据 插入用户 生成session,跳转登陆,pc端可以设置几秒钟ajax请求服务器,一旦获取到了state,即实现调整,微信浏览器里处理完后可以关闭窗口,微信js可实现:

document.addEventListener('WeixinJSBridgeReady', function onBridgeReady() {

WeixinJSBridge.call('closeWindow');}, false);

也可以授权登陆成功后跳转到微信服务号关注页面:

  1. header("Location: weixin://profile/gh_a5e1959f9a4e"); 
  2. wcallback方法做处理登陆 
  3. $code = $_GET['code']; 
  4. $state = $_GET['state']; 
  5. $setting = include CONFIG_PATH . 'setting.php' 
  6. $appid=$setting['weixin']['appid']; 
  7. $appsecret=$setting['weixin']['appsecret']; 
  8.  
  9. if (emptyempty($code)) $this->showMessage('授权失败'); 
  10. try{ 
  11.  
  12. $token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$appsecret.'&code='.$code.'&grant_type=authorization_code' 
  13.  
  14. $token = json_decode($this->https_request($token_url)); 
  15.  
  16. }catch(Exception $e
  17. print_r($e); 
  18.  
  19. if (isset($token->errcode)) { 
  20. echo ' 
  21. 错误: 
  22. '.$token->errcode; 
  23. echo ' 
  24. 错误信息: 
  25. '.$token->errmsg; 
  26. exit
  27.  
  28. $access_token_url = 'https://api.weixin.qq.com/sns/oauth2/refresh_token?appid='.$appid.'&grant_type=refresh_token&refresh_token='.$token->refresh_token; 
  29. //转成对象 
  30. $access_token = json_decode($this->https_request($access_token_url)); 
  31. if (isset($access_token->errcode)) { 
  32. echo ' 
  33. 错误: 
  34. '.$access_token->errcode; 
  35. echo ' 
  36. 错误信息: 
  37. '.$access_token->errmsg; 
  38. exit
  39. $user_info_url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token->access_token.'&openid='.$access_token->openid.'&lang=zh_CN' 
  40. //转成对象 
  41. $user_info = json_decode($this->https_request($user_info_url)); 
  42. if (isset($user_info->errcode)) { 
  43. echo ' 
  44. 错误: 
  45. '.$user_info->errcode; 
  46. echo ' 
  47. 错误信息: 
  48. '.$user_info->errmsg; 
  49. exit
  50. //打印用户信息 
  51. // echo ' 
  52. // print_r($user_info); 
  53. // echo ' 
  54. phpqrcode类库下载在此不提供各位可以百度搜索下载 
  55. magento微信扫码网站自动登录的例子 
  56. https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&lang=zh_CN 
  57. 查看授权后接口调用(UnionID),不难发现填写回调地址,用户确认登陆pc端即可跳转 
  58. 获取UnionID方法 
  59.  
  60. public function wcallbackAction(){ 
  61.  
  62. $code = $_GET['code']; 
  63. $state = $_GET['state']; 
  64. $setting = include CONFIG_PATH . 'setting.php'
  65. $appid=$setting['weixin']['appid']; 
  66. $appsecret=$setting['weixin']['appsecret']; 
  67.  
  68. if (emptyempty($code)) $this->showMessage('授权失败'); 
  69. try{ 
  70.  
  71. $token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$appsecret.'&code='.$code.'&grant_type=authorization_code'
  72.  
  73. $token = json_decode($this->https_request($token_url)); 
  74.  
  75. }catch(Exception $e
  76. print_r($e); 
  77.  
  78. if (isset($token->errcode)) { 
  79. echo '<h1>错误:</h1>'.$token->errcode; 
  80. echo '<br/><h2>错误信息:</h2>'.$token->errmsg; 
  81. exit
  82.  
  83. $access_token_url = 'https://api.weixin.qq.com/sns/oauth2/refresh_token?appid='.$appid.'&grant_type=refresh_token&refresh_token='.$token->refresh_token; 
  84. //转成对象 
  85. $access_token = json_decode($this->https_request($access_token_url)); 
  86. if (isset($access_token->errcode)) { 
  87. echo '<h1>错误:</h1>'.$access_token->errcode; 
  88. echo '<br/><h2>错误信息:</h2>'.$access_token->errmsg; 
  89. exit
  90. $user_info_url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token->access_token.'&openid='.$access_token->openid.'&lang=zh_CN'
  91. //转成对象 
  92. $user_info = json_decode($this->https_request($user_info_url)); 
  93. if (isset($user_info->errcode)) { 
  94. echo '<h1>错误:</h1>'.$user_info->errcode; 
  95. echo '<br/><h2>错误信息:</h2>'.$user_info->errmsg; 
  96. exit
  97. //打印用户信息 
  98. // echo '<pre>'; 
  99. // print_r($user_info); 
  100. // echo '</pre>'; 
  101.  
  102. //获取unionid 
  103.  
  104. $uid=$user_info->unionid; 
  105.  
  106. //phpfensi.com 
  107. //用户操作处理 分为再次登录和第一次登陆 
  108.  
  109. $sql="select h_user_id from dtb_user_binded as t1 left join dtb_user_weixin as t2 on t1.u_id=t2.id where t1.u_type='"
  110. User::$arrUtype['weixin_num_t']."' and t2.openid='$user_info->unionid'"
  111. $h_user_id = Core_Db::getOne($sql); 
  112. if(!emptyempty($h_user_id)){//该weixin号再次登录 
  113.  
  114. }{//该weixin号第一次登录 
  115.  

Tags: php微信扫码 php自动登陆

分享到: