小程序灰度开发遇到的问题

新版小程序开发:
创建订单

获取token

  //获取access_token
  getAccessToken(){
      let that=this;
      let appid="小程序的appid";
      let secret="小程序的密钥";
      wx.request({
        url: `https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=${appid}&secret=${secret}`,
        header: {
          'content-type': 'application/json'
        },
        success(res) {
          console.log("at微信小程序"+res.data.access_token)
      },
        fail(error){
          console.log(error)
        }
      })
  },

你可能感兴趣的:(小程序灰度开发遇到的问题)