我需要访问微信服务器获取token来生成二维码。小程序不允许把secret保存在前端,需要一个后台访问微信服务器。我基本没有后台知识。请问云函数怎么选,才能访问微信服务器呢?请用js的方法。谢谢。
微信的地址是这样的。
https请求方式: GET
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
var request1 = require('request');
request1({
method: 'GET',
url: 'https://www.baidu.com',
json: {
title: 'Vote for Pedro',
body: 'If you vote for Pedro, your wildest dreams will come true'
}
}, function(err, res, body) {
if (err) {
console.error('Request failed with response code ' + res.statusCode);
return"haha error";
} else {
console.log(body);
return "success";
}
});`
我吧上面的代码粘到云函数里面,结果是{}空的。好像是不能识别request