小程序涉及处理用户个人信息,使用耦合方式
<button id="agree-btn1" open-type="getPhoneNumber|agreePrivacyAuthorization" bindgetphonenumber="handleGetPhoneNumber" bindagreeprivacyauthorization="handleAgreePrivacyAuthorization">同意隐私协议并授权手机号</button> 在登录授权页面,那在其他页面,调用wx.chooseMedia、wx.chooseVideo接口时,这些需要重新同意隐私协议吗?这也可以用耦合的方式? 只要使用 open-type <button open-type="agreePrivacyAuthorization">所有私有信息都能用这种方式静默同意使用?还是需要使用弹窗授权的方式才生效?
建议参考官方demo2:https://developers.weixin.qq.com/s/hndZUOmA7gKn
自动监听在调用了隐私接口就弹窗授权。
只要先同意授权了,后续其他隐私接口不需要再弹窗了