体验版模式下基于以下代码可复现
当前:withCredentials: false 返回了 encryptedData, iv 等敏感信息
预期:根据官方文档,withCredentials: false 不返回了 encryptedData, iv 等敏感信息
wx.getUserInfo({
lang: "zh_CN",
withCredentials: false,
complete(res){
console.log("getUserInfo withCredentials=false", res)
}
})
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。