二次请求获取成员信息时,会报如下错误: { "errcode": "40029", "errmsg": "invalid code" } 这种情况是code过期了,企业号开发文档明确的写着”通过成员授权获取到的code,每次成员授权带上的code将不一样,code只能使用一次,10分钟未被使用自动过期“(http://qydev.weixin.qq.com/wiki/index.php?title=OAuth%E9%AA%8C…
php 微信登录 公众号 获取用户信息 微信网页授权 先自己建立两个文件: index.php  和  getUserInfo.php index.php <?php //scope=snsapi_userinfo实例 $appid=''; //填写你公众号的appid $redirect_uri = urlencode ( 'http://fenlei.sun0758.com/WX/getUserInfo.php' ); //回调页面 getUserInfo.php 不能写错 $url =&quo…
官方文档链接:http://mp.weixin.qq.com/wiki/4/9ac2e7b1f1d22e9e57260f6553822520.html /** * 获取code */ public function actionGetCode() { $response_type = 'code'; $scope = 'snsapi_userinfo'; $conf = yii::$app->params['oauth_conf']['oauth_wx_in']; $url = 'https:/…
项目微信公众号开发,记录获取用户微信号信息,和用户openid 1,登录微信公众平台 点击登录微信公众平台 2,获取公众号开发信息 登陆之后在 开发->基本配置 3,设置IP白名单 在这里添加服务器ip地址,并点击确认修改 4,微信接口类 <?php // 字符编码 header("Content-Type:text/html; charset=utf-8"); // 微信接口类 class WeChat{ private static $appid; private st…
class WxAuthModel extends BaseModel { var $appId = APPID; var $appSecret = APPSECRET; /*微信x小程序,获取微信openid*/ /*前端的回调url:填写成你的请求地址,然后微信会自己在这个回调url后加一个code,获取通过url传过来的code来换取access_token*/ public function get_access_token($code){ $token_url = "https://a…
1. 获取系统信息        wx.getSystemInfo(OBJECT)        wx.getSystemInfoSync() 同步获取系统信息                回调常用参数        model(手机型号) pixelRatio, screenWidth , screenHeight, windowWidth ,widnowHeight         language, version , system , platform ,fontSizeSetting…
文档:http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html !!! 微信跟用户没有关系类接口采用了OAUTH2 [客户端模式(Client Credentials Grant)],而跟用户有关系的接口,采用OAuth2.0服务端[授权码模式(Authorization Code)]来获得用户的openid:另外需要注意的一点就是需要在开发者中心页配置授权回调域名,域名必须与设置的域名在同一个域下. 网页授权ac…
加一个参数:lang:"zh_CN" 就可以了  1.  加在js里面 wx.getUserInfo({ lang:"zh_CN", success: function(res) { var userInfo = res.userInfo var nickName = userInfo.nickName var avatarUrl = userInfo.avatarUrl var gender = userInfo.gender //性别 0:未知.1:男.2:女…
     微信企业号的用户是须要验证的,因此能关注企业号的用户事实上就是已经通过验证的用户.但企业应用中打开一个网页,在这个网页中怎样依据微信用户的信息创建web应用中最长使用的session呢?微信用户怎样和web的session关联起来呢?    比如:一个应用.依据不同的人员,显示不同的内容,各个网页之间须要session来传递一些信息.在微信企业号中怎样处理呢? 这个问题须要涉及的接口是OAuth2验证接口,须要配置可信域名,初始化session. 一下以一个带有URL的菜单为例进行说明…
1. 微信企业号SDK class class_wxqiye { var $corpid = CorpID; var $corpsecret = CorpSecret; var $agentid = AgentID; //构造函数,获取Access Token public function __construct($corpid = NULL, $corpsecret = NULL, $agentid = NULL) { if($corpid && $corpsecret){ $this…