从getUserInfo接口更换为getUserProfile接口后服务端怎么获取unionid
原先getUserInfo加密数据解密之后可以直接获取用户openid和unionid,现要求更换成getUserProfile接口后,根据实际请求并解密发现,getUserProfile返回的加密数据解密之后不包含用户openid和unionid。 后查询文档发现 auth.code2Session 接口可返回unionid,但实际调试过程中发现该接口只会返回sessionKey和openid,并未包含unionid。 那么请问规范更改之后,更换成getUserProfile接口之后,服务端如何能够获取到用户的unionid,unionid对于用户唯一性非常重要,实际业务中不能没有。 https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/wx.getUserProfile.html