云函数如何请求sendTemplateMessage?
发布于 7 年前 作者 gangxie 17744 次浏览 来自 问答

总是返回null

2 回复

照着我这个格式去写   首先  npm  命令    n__pm install  request-promise__

安装request-promise

//npm install  request-promise

const rp = require(‘request-promise’);

// 云函数入口函数

exports.main = async(event, context) => {

var res = await rp(

{

method: ‘post’,

uri: https://api.weixin.qq.com,

body: {

xxx:’’ ,

aaa:‘aaa’,

bbb:‘bbb’

},//参数

headers: {},//请求头

json: true  //是否json数据

}

).then((  body) => {

return body

}).catch(err => {

return err;

})

return res;

}

要实现批量发送,该怎么写呢,求赐教

回到顶部