微信小程序中的云开发如何使用云函数生成二维码

本文最后更新于:2021年7月29日 下午

首先,需要给对应的云函数安装 request-promise 依赖。(不会给云函数安装依赖的盆友请移步 微信小程序中的云开发如何使用npm安装依赖

生成二维码的云函数如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// 云函数入口文件
const cloud = require('wx-server-sdk')
const rp = require('request-promise')

cloud.init()

// 云函数入口函数
exports.main = async (event, context) => {

const page = event.page
const scene = event.scene

//appid和秘钥
const appid = '***',
secret = '***';

const AccessToken_options = {
method: 'GET',
url: 'https://api.weixin.qq.com/cgi-bin/token',
qs: {
appid,
secret,
grant_type: 'client_credential'
},
json: true

};

//获取AccessToken
const resultValue = await rp(AccessToken_options);
const token = resultValue.access_token;

//获取小程序码配置
const code_options = {
method: 'POST',
url: 'https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=' + token,
body: {
'page': page,
'width': 430,
'scene': scene
},
json: true,
encoding: null
};

//获取二进制图片
const buffer = await rp(code_options);

const upload = await cloud.uploadFile({
cloudPath: 'wxacode.png',
fileContent: buffer,
})
return {
wxacodefileID: upload.fileID
}

}


如果这篇文章对你有帮助,或者想给我微小的工作一点点资瓷,请随意打赏。
潘高 微信支付

微信支付

潘高 支付宝

支付宝


微信小程序中的云开发如何使用云函数生成二维码
https://blog.pangao.vip/微信小程序中的云开发如何使用云函数生成二维码/
作者
潘高
发布于
2019年2月28日 下午
更新于
2021年7月29日 下午
许可协议