美文网首页
小程序灰度开发遇到的问题

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

作者: 日落_3d9f | 来源:发表于2022-07-13 13:25 被阅读0次

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

    获取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)
            }
          })
      },
    

    相关文章

      网友评论

          本文标题:小程序灰度开发遇到的问题

          本文链接:https://www.haomeiwen.com/subject/azzzbrtx.html