2018-4-23 seo达人
如果您想订阅本博客内容,每天自动发到您的邮箱中, 请点这里
在微信登录中,如何和获取网页授权。 一、登录微信测试公众品平台,修改网页授权基本信息,输入授权回调页面域名(自己的域名)。 然后重新建立一个tp框架 编写方法如图: [php] view plain copy <?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { public function index(){ $appid='wx27f664ab15ecb71d'; $redirect_uri=urlencode('http://www.crimson1.top/vote/index.php/home/index/getcode'); $url="https://open.weixin.qq.com/connect/oauth2/authorize?appid=$appid&redirect_uri=$redirect_uri&response_type=code&scope=snsapi_userinfo&state=1#wechat_redirect"; header("Location:".$url); } public function getcode(){ $code=$_GET["code"]; $json=$this->access_token($code); echo $json; } public function access_token($code){ $appid="wx27f664ab15ecb71d"; $appsecret="015756334f2982ed1189c6d66dbc0353"; $url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$appsecret&code=$code&grant_type=authorization_code"; $ret=https_request($url); return $ret; } } 在公共模块中新建function.php [php] view plain copy <?php function https_request($url){ $curl=curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $data=curl_exec($curl); if(curl_errno($curl)){ return 'ERROR'.curl_error($curl); } curl_close($curl); return $data; } 在自己的手机端访问,就能获取access_token; 蓝蓝设计( www.lanlanwork.com )是一家专注而深入的界面设计公司,为期望卓越的国内外企业提供卓越的UI界面设计、BS界面设计 、 cs界面设计 、 ipad界面设计 、 包装设计 、 图标定制 、 用户体验 、交互设计、 网站建设 、平面设计服务
在微信登录中,如何和获取网页授权。
一、登录微信测试公众品平台,修改网页授权基本信息,输入授权回调页面域名(自己的域名)。
然后重新建立一个tp框架 编写方法如图:
在公共模块中新建function.php
在自己的手机端访问,就能获取access_token;
蓝蓝设计的小编 http://www.lanlanwork.com