Files
fastbee/wechat/cloudfunctions/callback/index.js
2021-07-27 21:57:03 +08:00

26 lines
501 B
JavaScript

const cloud = require('wx-server-sdk')
cloud.init({
// API 调用都保持和云函数当前所在环境一致
env: cloud.DYNAMIC_CURRENT_ENV
})
// 云函数入口函数
exports.main = async (event, context) => {
console.log(event)
const { OPENID } = cloud.getWXContext()
const result = await cloud.openapi.customerServiceMessage.send({
touser: OPENID,
msgtype: 'text',
text: {
content: `收到:${event.Content}`,
}
})
console.log(result)
return result
}