getAccess_token(){
var that=this;
wx.request({
url: 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=xxxx&secret=xxx',
method: 'GET',
success(res) {
console.log("access_token",res.data.access_token)
var access_token = res.data.access_token;
that.yesorno(access_token,that.data.SessionTotal);
},
fail(res) {
console.log("res",res)
console.log("access_token获取失败")
that.addforum();
}
})
},
你这么nb?服务端API你搞小程序上用?
服务端接口请勿在小程序端进行调用,微信官方也是处于安全考虑,不然小程序的密钥信息会造成泄露
出于安全考虑 你不能在小程序发起这个请求
不是不可以,是不应该这样做。
体验版本是可以正常获取到的