first commit
This commit is contained in:
13
cloudfunctions/getOpenId/index.js
Normal file
13
cloudfunctions/getOpenId/index.js
Normal file
@@ -0,0 +1,13 @@
|
||||
// 云函数入口文件
|
||||
const cloud = require('wx-server-sdk')
|
||||
|
||||
cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV })
|
||||
|
||||
// 云函数入口函数
|
||||
exports.main = async (event, context) => {
|
||||
const wxContext = cloud.getWXContext()
|
||||
|
||||
return {
|
||||
openid: wxContext.OPENID
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user