小程序 之getUserProfile版小程序授權


一、效果圖

 

 二、代碼

wx.getUserProfile({
  desc: '用於獲取用戶個人信息',
  success: function (detail) {
    wx.login({
      success: ress => {
        var code = ress.code; //登錄憑證
        wx.request({
          url: api.getUnionId, //自己的服務接口地址
          method: 'post',
          header: {
            'content-type': 'application/x-www-form-urlencoded'
          },
          data: {
            encryptedData: detail.encryptedData,
            iv: detail.iv,
            code: code,
          },
          success: (res) => {
            console.log("res:", res.data)
          },
          fail: function () {
            console.log('系統錯誤')
          }
        })
      }
    });
  },
  fail: function(){
    console.log('請允許授權以便為您提供給服務')
  }
});

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM