小程序
小游戏
企业微信
微信支付
扫描小程序码分享
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/union-id.html
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
UnionID 机制说明
如果开发者拥有多个移动应用、网站应用、和公众帐号(包括小程序),可通过 UnionID 来区分用户的唯一性,因为只要是同一个微信开放平台帐号下的移动应用、网站应用和公众帐号(包括小程序),用户的 UnionID 是唯一的。换句话说,同一用户,对同一个微信开放平台下的不同应用,UnionID是相同的。
UnionID获取途径
绑定了开发者帐号的小程序,可以通过以下途径获取 UnionID。
code2Session
getPaidUnionId
云开发版本
const cloud = require('wx-server-sdk') exports.main = async (event, context) => { const { OPENID, APPID, UNIONID, ENV, } = cloud.getWXContext() return { OPENID, APPID, UNIONID, ENV, } }
传统版本前端部分:
wx.login({ success (res) { if (res.code) { //发起网络请求 wx.request({ url: 'https://example.com/onLogin', data: { code: res.code } }) } else { console.log('登录失败!' + res.errMsg) } } })
后端code2session拿到unionid:
java版:
2. 使用 code 换取 session_key 和 openID。
String appId = "your appId"; String secret = "your secret"; String code = "the code got from frontend"; String url = "https://api.weixin.qq.com/sns/jscode2session?appid=" + appId + "&secret=" + secret + "&js_code=" + code + "&grant_type=authorization_code"; String result = HttpUtils.get(url); JSONObject json = JSON.parseObject(result); String sessionKey = json.getString("session_key"); String openId = json.getString("openid");
3.解密用户加密数据,获取 UnionID。
byte[] encryptedDataBytes = Base64.getDecoder().decode(encryptedData); byte[] ivBytes = Base64.getDecoder().decode(iv); byte[] sessionKeyBytes = Base64.getDecoder().decode(sessionKey); AlgorithmParameterSpec ivSpec = new IvParameterSpec(ivBytes); SecretKeySpec keySpec = new SecretKeySpec(sessionKeyBytes, "AES"); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); cipher.init(Cipher.DECRYPT_MODE, keySpec, ivSpec); byte[] resultBytes = cipher.doFinal(encryptedDataBytes); String result = new String(resultBytes, "UTF-8"); JSONObject json = JSON.parseObject(result); String unionId = json.getString("unionId");
4.返回unionid给前端
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
小程序调用wx.login 返回的code 传给服务端(调用该接口https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/user-login/code2Session.html)解密出unionId
获取openid符合条件就能看到unionid了
文档上有例子啊
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
UnionID 机制说明
如果开发者拥有多个移动应用、网站应用、和公众帐号(包括小程序),可通过 UnionID 来区分用户的唯一性,因为只要是同一个微信开放平台帐号下的移动应用、网站应用和公众帐号(包括小程序),用户的 UnionID 是唯一的。换句话说,同一用户,对同一个微信开放平台下的不同应用,UnionID是相同的。
UnionID获取途径
绑定了开发者帐号的小程序,可以通过以下途径获取 UnionID。
code2Session
获取到该用户 UnionID,无须用户授权。getPaidUnionId
接口获取该用户的 UnionID,无需用户授权。注意:本接口仅在用户支付完成后的5分钟内有效,请开发者妥善处理。云开发版本
const cloud = require('wx-server-sdk') exports.main = async (event, context) => { const { OPENID, APPID, UNIONID, ENV, } = cloud.getWXContext() return { OPENID, APPID, UNIONID, ENV, } }
传统版本前端部分:
wx.login({ success (res) { if (res.code) { //发起网络请求 wx.request({ url: 'https://example.com/onLogin', data: { code: res.code } }) } else { console.log('登录失败!' + res.errMsg) } } })
后端code2session拿到unionid:
java版:
2. 使用 code 换取 session_key 和 openID。
String appId = "your appId"; String secret = "your secret"; String code = "the code got from frontend"; String url = "https://api.weixin.qq.com/sns/jscode2session?appid=" + appId + "&secret=" + secret + "&js_code=" + code + "&grant_type=authorization_code"; String result = HttpUtils.get(url); JSONObject json = JSON.parseObject(result); String sessionKey = json.getString("session_key"); String openId = json.getString("openid");
3.解密用户加密数据,获取 UnionID。
byte[] encryptedDataBytes = Base64.getDecoder().decode(encryptedData); byte[] ivBytes = Base64.getDecoder().decode(iv); byte[] sessionKeyBytes = Base64.getDecoder().decode(sessionKey); AlgorithmParameterSpec ivSpec = new IvParameterSpec(ivBytes); SecretKeySpec keySpec = new SecretKeySpec(sessionKeyBytes, "AES"); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); cipher.init(Cipher.DECRYPT_MODE, keySpec, ivSpec); byte[] resultBytes = cipher.doFinal(encryptedDataBytes); String result = new String(resultBytes, "UTF-8"); JSONObject json = JSON.parseObject(result); String unionId = json.getString("unionId");
4.返回unionid给前端
小程序调用wx.login 返回的code 传给服务端(调用该接口https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/user-login/code2Session.html)解密出unionId
获取openid符合条件就能看到unionid了
文档上有例子啊