日韩精品欧美激情国产一区_中文无码精品一区二区三区在线_岛国毛片AV在线无码不卡_亞洲歐美日韓精品在線_使劲操好爽好粗视频在线播放_日韩一区欧美二区_八戒八戒网影院在线观看神马_亚洲怡红院在线色网_av无码不卡亚洲电影_国产麻豆媒体MDX

小程序獲得openid實例

時間:2019-03-25 20:52:21 類型:微信小程序
字號:    
小程序獲得openid實例
App({
  onLaunch: function () {
    var _this = this;
    wx.login({
      //獲取code
      success: function (res) {
        //得到openid 開始
        wx.request({
          url: 'https://api.weixin.qq.com/sns/jscode2session',
          data: {
            appid: _this.globalData.appid,
            secret:_this.globalData.appsecret,
            js_code:res.code,
            grant_type:'authorization_code'
          },
          method:'GET',
          header: {
            'content-type': 'application/json'
          },
          success: function (res) {
            console.log(res.data);
            var openid = res.data.openid; //返回openid
          }
        })
        //得到openid結(jié)束
      }
    })
    //用戶登陸結(jié)束
  },
  globalData: {
    appid:'wx99777c04115e0238',
    appsecret:'4c0f48c8003550b399aab023424sdf',
   
  }
})