You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
348 B
18 lines
348 B
const cloud = require('wx-server-sdk');
|
|
|
|
cloud.init({
|
|
env: cloud.DYNAMIC_CURRENT_ENV
|
|
});
|
|
|
|
// 获取openId云函数入口函数
|
|
exports.main = async (event, context) => {
|
|
// 获取基础信息
|
|
const wxContext = cloud.getWXContext();
|
|
|
|
return {
|
|
openid: wxContext.OPENID,
|
|
appid: wxContext.APPID,
|
|
unionid: wxContext.UNIONID,
|
|
};
|
|
};
|