// 获取 access_token
getAccessToken() {
let appid = '',
secret = '';
uni.request({
method: "GET",
url: `https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=${appid}&secret=${secret}`,
success: (result) => {
let access_token = result.data.access_token
// 获取到 access_token 后 获取二维码
this.getQrCode(access_token)
}
})
},
// 获取二维码
getQrCode(token) {
// 注意 access_token 参数是必须放在url后面 其余参数 要在data里面
uni.request({
method: "POST",
responseType: 'arraybuffer', // 注意一定要加 不然返回的Buffer流会乱码 导致无法转base64
url: `https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=${token}`,
data: {
page: '', // 需要打开的页面路径
scene: '' // 这个是需要传递的参数
},
success: (result) => {
// 拿到buffer流 通过wx.arrayBufferToBase64 转成base64 在页面展示
// 如果请求时不加 responseType: 'arraybuffer' 拿到的buffer流转码会失败
this.bufferImg = "data:image/png;base64," + wx.arrayBufferToBase64(result.data);
},
})
},
扫描二维码在onLoad生命周期中获取传递的参数(scene)
onLoad(options) {
console.log(options, 'options');
}
调用成功后会返回一张二进制图片(圆形)
页面中使用image标签将图片显示到页面上
<image :src="bufferImg" style="width: 200px;height: 200px"></image>
链接: 获取不限制的小程序码
https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=ACCESS_TOKEN
请求参数:两个必传
实现代码
access_token 参数是必须放在url后面 其余参数 要在data里面
// 获取二维码
getQrCode(token) {
uni.request({
method: "POST",
responseType: 'arraybuffer',
url: `https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=${token}`
data: {
page: '', // 需要打开的页面路径
scene: '' // 这个是需要传递的参数
},
success: (result) => {
this.bufferImg = "data:image/png;base64," + wx.arrayBufferToBase64(result.data);
},
})
},
调用接口
GET https://api.weixin.qq.com/cgi-bin/token
请求参数:三个必传
// 获取 access_token
getAccessToken() {
let appid = '',
secret = '';
uni.request({
method: "GET",
url: `https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=${appid}&secret=${secret}`,
success: (result) => {
// 获取到 access_token 后 获取二维码
this.getQrCode(result.data.access_token)
}
})
}
传递参数使用query方式进行传递?xxx=xx
// 获取 access_token
getAccessToken() {
let appid = '',
secret = '';
uni.request({
method: "GET",
url: `https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=${appid}&secret=${secret}`,
success: (result) => {
let access_token = result.data.access_token
// 获取到 access_token 后 获取二维码
this.getQrCode(access_token)
}
})
},
getQrCode(token) {
uni.request({
method: "POST",
responseType: 'arraybuffer', // 注意一定要加 不然返回的Buffer流会乱码 导致无法转base64
url: `https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode?access_token=${token}`,
data: {
path: `pages/subPack_index/EnterpriseInfo/index?enterpriseId=${this.enterpriseId}`, // 需要打开的页面路径
},
success: (result) => {
// 拿到buffer流 通过wx.arrayBufferToBase64 转成base64 在页面展示
// 如果请求时不加 responseType: 'arraybuffer' 拿到的buffer流转码会失败
this.bufferImg = "data:image/png;base64," + wx.arrayBufferToBase64(result.data);
},
})
},
扫描二维码在onLoad生命周期中获取传递的参数
onLoad(options) {
console.log(options, 'options');
}
链接: 获取小程序二维码
https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode?access_token=ACCESS_TOKEN
请求参数:两个必传
// 获取二维码
getQrCode(token) {
uni.request({
method: "POST",
responseType: 'arraybuffer',
url:`https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode?access_token=${token}`
data: {
path: `pages/subPack_index/EnterpriseInfo/index?enterpriseId=${this.enterpriseId}`
},
success: (result) => {
this.bufferImg = "data:image/png;base64," + wx.arrayBufferToBase64(result.data);
},
})
},
方式参考上面的获取access_token方式
流程和获取小程序二维码的流程基本一致,只需要把接口替换成
https://api.weixin.qq.com/wxa/getwxacode?access_token=ACCESS_TOKEN
即可
注意:使用这些接口获取的小程序码或小程序二维码,最好是在后端实现,通过接口把生成的小程序码返回给前端展示,因为获取access_token值时,有小程序id和小程序秘钥这些重要的数据,前端调用这些接口可能会导致重要信息泄露!!