新版小程序开发:
创建订单
获取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)
}
})
},
网友评论