请问一下,我云函数调用二维码生成接口好像执行错误?
const appid = '***',
secret = '***';//此处是有数据的,但我打码了
console.log(appid+secret);
const AccessToken_options = {
method: 'GET',
url: 'https://api.weixin.qq.com/cgi-bin/token',
qs: {
appid,
secret,
grant_type: 'client_credential'
},
json: true
};
console.log(AccessToken_options)//此处打印内容为
这个语句貌似没有执行,请问这是为什么。