哈哈,秋天真美好。
https://api.weixin.qq.com/cgi-bin/userjs后台请求这个接口返回 48001? let obj = await this.ctx.curl("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=私人的appid&secret=私人的",{ // 必须指定 method method: 'GET', // 通过 contentType 告诉 HttpClient 以 JSON 格式发送 contentType: 'json', // 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body dataType: 'json', }) console.log(obj) let userInfo = await this.ctx.curl("https://api.weixin.qq.com/cgi-bin/user/info?access_token="+obj.data.access_token +"&openid="+"获取的openid"+"&lang=zh_CN",{ method: 'GET', // 通过 contentType 告诉 HttpClient 以 JSON 格式发送 contentType: 'json', // 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body dataType: 'json', }) console.log(userInfo) } 返回结果 data: { errcode: 48001, errmsg: 'api unauthorized hint: [4VKB_a03071503!]' },
2022-09-18