码迷,mamicode.com
首页 > 微信 > 详细

微信小程序获取openid

时间:2017-10-31 11:15:29      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:lda   cat   ant   style   console   encode   public   实现   xxxx   

通过登录接口获取登录凭证,然后通过request请求后台获取openid,需要把后台域名放到小程序后台的request 合法域名内:

1.wx.login  获取登录凭证

2.wx.request 发起的是 HTTPS 请求

3.后台处理请求并返回openid

下面是实现代码:

小程序代码:

wx.login({

    success: function (res) {
        if (res.code) {
            console.log("我是登录凭证:"+res.code);
            var a = that.globalData;  //这里存储了appid、secret
 
            wx.request({
                 url: ‘https://XXXXXXXXX/getopenid‘,  //后台获取openid的链接,该链接域名需要添加到小程序request 合法域名
                 header: { "Content-Type": "application/x-www-form-urlencoded" },
                 method: "POST",
                 data: {  code: res.code, appid: a.appid, appsecret:a.secret },  
                 success: function (res) {
                     that.globalData.openid = res.data.openid;
                     console.log("openid:"+that.globalData.openid);
                 }
           })
        } else {
           console.log(‘获取用户登录态失败!‘ + res.errMsg)
        }
    }
});
后台获取openid代码:

public function getopenid(){
$data = $_POST;
//echo json_encode($data);
$appid=$data[‘appid‘];
$appsecret=$data[‘appsecret‘];
$code=$data[‘code‘];
$get_url="https://api.weixin.qq.com/sns/jscode2session?appid=".$appid."&secret=".$appsecret."&js_code=".$code."&grant_type=authorization_code";
$get_return = file_get_contents($get_url);
$get_return = (array)json_decode($get_return);
//$openid=$get_return[‘openid‘];
echo json_encode($get_return);exit();

}

以上就是小程序获取openid的方法。

 

微信小程序获取openid

标签:lda   cat   ant   style   console   encode   public   实现   xxxx   

原文地址:http://www.cnblogs.com/fortitude526/p/7760165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!