first commit
This commit is contained in:
5
cloudfunctions/getOpenId/config.json
Normal file
5
cloudfunctions/getOpenId/config.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"permissions": {
|
||||
"openapi": []
|
||||
}
|
||||
}
|
||||
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
|
||||
}
|
||||
}
|
||||
9
cloudfunctions/getOpenId/package.json
Normal file
9
cloudfunctions/getOpenId/package.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"name": "getOpenId",
|
||||
"version": "1.0.0",
|
||||
"description": "获取用户OpenID",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"wx-server-sdk": "~3.0.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user