uniapp微信小程序《隐私保护协议》弹窗处理流程

背景

在这里插入图片描述

《关于小程序隐私保护指引设置的公告》
《小程序隐私协议开发指南》

流程

1.第一步
必须设置且审核通过!!!
在这里插入图片描述
2.第二步

uniapp在manifest.json中添加!!!

/*
在 2023年9月15号之前,在 app.json 中配置 __usePrivacyCheck__: true 后,会启用隐私相关功能,如果不配置或者配置为 false 则不会启用。
在 2023年9月15号之后,不论 app.json 中是否有配置 __usePrivacyCheck__,隐私相关功能都会启用。
*/
"mp-weixin": { /* 微信小程序特有相关 */
	"appid": "wxc8888888888",
	"__usePrivacyCheck__":true,
	"plugins": {
	    "WechatSI": {
	      "version": "0.3.5",
	      "provider": "wx069ba97219f66d99"
	    }
	 },
},

很多人前两步没做或者做的不对,导致出现needAuthorization一直为false情况

{needAuthorization: false, privacyContractName: "《小程序隐私保护指引》", errMsg: "getPrivacySetting:ok"}

3.第三步
此处需要根据情况决定,在何时弹出隐私授权弹窗:
1.进入小程序就弹(对开发来说好,就是用户体验不好)
2.在使用到的页面弹出(繁琐,但是用户体验好,有些小程序可能就一两个页面涉及)
3.本示例采用方法2,因为就一个页面需要用到音视频授权,流程为进入需要使用的页面,弹出隐私授权,等待用户确认后,依次弹出音频授权、视频授权确认,让用户一次性点完,以免多处导致用户不耐烦。
如图:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

<template>
	<!-- 如果拒绝隐私授权或者音视频授权,当我们触发例如音频时,会再次弹出 -->
	<button @longpress="startRecord" @touchend="endRecord" type="default">长按发送语音</button>
	<!-- camera组件等自动触发【视频授权】会和【隐私授权】同时出现情况,需要在隐私授权之前隐藏 -->
	<camera v-if="empower"></camera>
	<!-- 隐私授权弹窗 -->
	<view class="mask flex alic justc" v-if="showPrivacy">
	    <view class="privacyBox">
	        <view class="title fz16 fw tc lh40">用户隐私保护</view>
	        <view class="txt borBox fz14 lh22 color3">
	            感谢您使用本产品,您使用本产品前应当仔细阅读并同意<text class="colorb" @click="handleOpenPrivacyContract">《小程序隐私保护指引》</text>当您点击同意并开始使用产品服务时,即表示你已理解并同意该条款内容,该条款将对您产生法律约束力。如您拒绝,将无法更好的体验产品。
	        </view>
	        <view class="footer flex justsa alic">
	            <button class="cancel borBox" type="primary" @click="showPrivacy = false">拒绝</button>
	            <button class="iknow" type="primary" id="agree-btn" open-type="agreePrivacyAuthorization" @agreeprivacyauthorization="handleAgreePrivacyAuthorization">同意</button>
	        </view>
	    </view>
	</view>
</template>

<script>
//同声传译
const plugin = requirePlugin("WechatSI");
const manager = plugin.getRecordRecognitionManager();
export default {
	data(){
		return {
			// 是否弹出隐私授权弹窗
			showPrivacy: false,
			// 是否点击同意隐私授权,此变量为了防止例如camera组件等自动触发【视频授权】会和【隐私授权】同时出现情况
			// 只需在未同意隐私授权情况下,隐藏会触发uni.authorize效果的组件,如下
			// <camera v-if="empower"></camera>
            empower:false,
		}
	},
	async onLoad(val) {
		// 模拟隐私接口调用,并触发隐私弹窗逻辑
        // wx.requirePrivacyAuthorize({
        //     success: () => {
        //         console.log('点击同意');
        //         this.showPrivacy = true
        //     },
        //     fail: () => {
        //         console.log('点击拒绝');       
        //     }, 
        //     complete: () => {
        //         console.log('用户已点击');
        //     }
        // })
        // 监听隐私接口需要用户授权事件,处理被拒绝情况下再次唤醒弹窗
        if (wx.onNeedPrivacyAuthorization) {
            wx.onNeedPrivacyAuthorization(resolve => {
                // 需要用户同意隐私授权时,弹出开发者自定义的隐私授权弹窗
                this.showPrivacy = true
                console.log(resolve)
            })
        }
        // 查询隐私授权情况,进入页面有需要直接弹出情况
        if(wx.getPrivacySetting){
	        wx.getPrivacySetting({
	            success: res => {
	                console.log(res) // 返回结果为: res = { needAuthorization: true/false, privacyContractName: '《xxx隐私保护指引》' }
	                if (res.needAuthorization) {
	                    console.log('需要授权???')
	                    // 需要弹出隐私协议
	                    this.showPrivacy = true
	                    this.empower = false
	                } else {
	                    console.log('已授权???')
	                    this.empower = true
	                    // 用户已经同意过隐私协议,所以不需要再弹出隐私协议,也能调用已声明过的隐私接口
	                    // wx.getUserProfile()
	                    // wx.chooseMedia()
	                    // wx.getClipboardData()
	                    // wx.startRecord()
	                }
	            },
	            fail: () => { },
	            complete: () => { }
	        })
        }else{
            // 兼容低版本无隐私授权
            this.empower = true
        }
	},
	methods: {
		// 开始录音
        async startRecord() {
            manager.stop();
            // 点击录音再次检验权限
            await this.getAuth('scope.camera')
            await this.getAuth('scope.record')
            manager.start({
                lang: "zh_CN",
                duration: 60 * 1000
            });
        },
        // 结束录音
        endRecord() {
            manager.stop();
        },
        // 用户隐私协议确认按钮
		handleAgreePrivacyAuthorization(e) {
            console.log('确认',e)
            this.showPrivacy = false
            this.empower = true
            // 点击同意隐私授权后依次弹出授权
            this.getAuth('scope.camera', false)
            this.getAuth('scope.record', false)
            // 用户同意隐私协议事件回调
            // 用户点击了同意,之后所有已声明过的隐私接口和组件都可以调用了
            // wx.getUserProfile()
            // wx.chooseMedia()
            // wx.getClipboardData()
            // wx.startRecord()
        },
        // 打开协议
        handleOpenPrivacyContract() {
            // 打开隐私协议页面
            wx.openPrivacyContract({
                success: () => { }, // 打开成功
                fail: () => { }, // 打开失败
                complete: () => { }
            })
        },
        /**
         * 根据权限名检查权限是否开启,未开启引导开启
         * @param { string } name 
         * @param { boolean } showAgain 拒绝后再次点击触发弹窗跳转授权列表页
         */
        getAuth(name, showAgain = true) {
            const nameObj = {
                'scope.camera': '摄像头',
                'scope.record': '麦克风'
            }
            let authCamera = false
            return new Promise((res, rej) => {
                uni.getSetting({
                    success(e) {
                        if (!e.authSetting[name]) {
                            uni.authorize({
                                scope: name,
                                // success(){
                                //     console.log('获取权限')
                                // },
                                fail() {
                                    if (showAgain) {
                                        uni.showModal({
                                            title: '提示',
                                            content: `您已拒绝授权,为了更好的体验,请重新授权使用${nameObj[name]}`,
                                            success(event) {
                                                if (event.confirm) {
                                                    uni.openSetting({
                                                        success(data) {
                                                            if (data.authSetting[name]) {
                                                                authCamera = true
                                                                res(true)
                                                            } else {
                                                                uni.showToast({
                                                                    title: '未授权',
                                                                    icon: 'none'
                                                                })
                                                            }
                                                        }
                                                    })
                                                }
                                            }
                                        })
                                    }
                                }
                            })
                        } else {
                            authCamera = true
                            res(true)
                        }
                    }
                })
                return authCamera
            })
        },
	}
}
</script>

<style lang="less" scoped>
	// 缺少的样式从下面样式表获取
	.privacyBox{
        background: #fff;
        width: 70vw;
        border-radius: 6px;
        .title{
            border-bottom:1px solid #ebedf0;
        }
        .txt{
            // height: 30vh;
            // overflow-y: auto;
            padding: 10px;
        }
        .footer{
            border-top:1px solid #ebedf0;
            .cancel{
                color: #666;
                background-color: #fff;
                font-size: 14px;
                border: 1px solid #aaa;
                border-radius: 20px;
                margin: 8px 0;
                width: 100px;
            }
            .iknow{
                color: #fff;
                background-color: #409eff;
                font-size: 14px;
                border-radius: 20px;
                margin: 8px 0;
                width: 100px;
            }
        }
    }
</style>

样式表

@charset "utf-8";
/* CSS Document */
html,body{height: 100%;width: 100%;word-wrap:break-word;}
.w50{width: 50%;}
.w100{width: 100%;}
*{margin: 0;padding: 0;outline: none;}
.tc{text-align: center}
.tl{text-align: left;}
.tr{text-align: right}
.vm{vertical-align: middle;}
.fl{float: left;}
.fr{float: right;}
.fz26{font-size: 26px;}
.fz25{font-size: 25px;}
.fz24{font-size: 24px;}
.fz22{font-size: 22px;}
.fz20{font-size: 20px;}
.fz18{font-size: 18px;}
.fz16{font-size: 16px;}
.fz14{font-size: 14px;}
.fz12{font-size: 12px;}
.fz11{font-size: 11px;-webkit-transform: scale(0.85);transform: scale(0.85);display: inline-block;transform-origin: left;}
.fz10{font-size: 10px;-webkit-transform: scale(0.8);transform: scale(0.8);display: inline-block;transform-origin: left;}
.fw{font-weight: 600;font-weight: bold;}
.fw4{font-weight: 400;}
.fwB{font-weight: bold;}
.mr5{margin-right: 5px}
.mr10{margin-right: 10px}
.mr12{margin-right: 12px}
.mr15{margin-right: 15px}
.mr20{margin-right: 20px}

.ml5{margin-left:5px;}
.ml10{margin-left:10px;}
.ml12{margin-left:12px;}
.ml15{margin-left:15px;}
.ml20{margin-left:20px;}

.mt40{margin-top:40px;}
.mt20{margin-top: 20px;}
.mt15{margin-top: 15px;}
.mt12{margin-top: 12px;}
.mt10{margin-top: 10px;}
.mt5{margin-top: 5px;}
.mt3{margin-top: 3px;}
.mt7{margin-top: 7px;}

.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb12{margin-bottom: 12px;}
.mb15{margin-bottom: 15px;}
.mb20{margin-bottom: 20px;}

.pt5{padding-top: 5px;}
.pt10{padding-top: 10px;}
.pt12{padding-top: 12px;}
.pt15{padding-top: 15px;}
.pt20{padding-top: 20px;}

.pb5{padding-bottom: 5px;}
.pb10{padding-bottom: 10px;}
.pb12{padding-bottom: 12px;}
.pb15{padding-bottom: 15px;}
.pb20{padding-bottom: 20px;}

.pl5{padding-left: 5px;}
.pl10{padding-left: 10px;}
.pl12{padding-left: 12px;}
.pl15{padding-left: 15px;}
.pl20{padding-left: 20px;}

.pr5{padding-right: 5px;}
.pr10{padding-right: 10px;}
.pr12{padding-right: 12px;}
.pr15{padding-right: 15px;}
.pr20{padding-right: 20px;}
.bgf{background: #fff;}
.bgea{background: #EAEAEA;}
.bgF3{background: #5377F3;}
.bg48{background: #F2B448;}
.bgA2{background: #00D7A2;}
.bgF4{background: #FFFBF4;}
.bgFb{background: #EEFFFB;}
.bgs{ box-shadow: 0px 0px 15px #eee;}


.colorF{color: #fff;}
.color3{color: #333;}
.color6{color: #666;}
.color9{color: #999;}
.color49{color: #494949;}
.color80{color: #808080;}
.colorA5{color:#A5A5A5}
.colorb{color:blue}
.colorF3{color: #5377F3;}
.color48{color: #F2B448;}
.colorA2{color: #00D7A2;}
.color00{color: #FF0000}
.color26{color: #FFA926;}


.lh20{line-height: 20px;}
.lh22{line-height: 22px;}
.lh24{line-height: 24px;}
.lh30{line-height: 30px;}
.lh36{line-height: 36px;}
.lh40{line-height: 40px;}
.lh50{line-height: 50px;}
.lh60{line-height: 60px;}

.hide{display: none}
.show{display: block}
.inline{display: inline-block;}
.indent2{text-indent: 2em;}
.txt2{
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.txt3{
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.txtno{white-space: nowrap;}/*不换行*/
.txtsa{text-align: justify;text-align-last: justify;}/*文字分散对齐*/
.wn{white-space:nowrap;}

.flex{display: flex;}
.flex1{flex:1;}
.colu{flex-direction: column;}
.justc{justify-content: center;}
.justs{justify-content: space-between}/*两端对齐*/
.justsa{justify-content: space-around}/*分散对齐*/
.juste{justify-content: flex-end;}
.alic{align-items: center}
.wrap{flex-wrap:wrap}
.childEnd{align-self:flex-end;}

.posAbs{position: absolute;}
.posRel{position: relative;}
.posFix{position: fixed;}
.top0{top:0;}
.bottom0{bottom:0;}
.left0{left:0;}
.right0{right: 0;}
.w100{width: 100%}
.h100{height: 100%}

.border0{border:0}
.borBox{box-sizing: border-box;}
.borderte0{border-top:1px solid #e0e0e0; }
.borderbe0{border-bottom:1px solid #e0e0e0; }
.borRad{border-radius:5px;}
.borRad50{border-radius:50%;}
.over{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.overH{overflow: hidden}
.overS{overflow: scroll;}
.clear{zoom:1;}
.clear:after{content: "\0020";display: block;height: 0;clear: both;}
.mask{width: 100%;height: 100%;background: rgba(20, 20, 20, 0.5);position: fixed;z-index: 5;top: 0;left: 0;}

.cursor{cursor: pointer;}
.noClick{pointer-events: none;}
li{list-style:none;}
a{text-decoration:none;color:#555;}
a:hover{color:#555;}
img{display:block;vertical-align:middle;}
a img,fieldset{border:0;}
i,em{font-style:normal}
input,textarea,select{outline:none;}
textarea{resize:none;}
table{border-collapse:collapse;}
[v-cloak] {
    display: none;
}
备注

下雨了

  • 2
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
你好!关于UniApp微信小程序用户隐私的新规,我可以向你提供一些信息。请注意,以下内容仅供参考,具体规定可能会根据地区和平台的要求而有所不同。 根据最新的数据保护法规,包括欧洲的通用数据保护条例(GDPR)和中国的个人信息保护法(PIPL),以及微信小程序平台的相关规定,开发者需要遵守以下几个方面的要求: 1.个人信息收集:开发者需要明确告知用户在使用小程序过程中收集的个人信息类型、目的和使用方式。用户必须明确同意以及了解他们的个人信息将如何被处理和保护。 2.合法合规:开发者需要确保个人信息的收集与处理符合相关法律法规,并且要求第三方服务提供商(如UniApp等)也要遵守相关规定。开发者需要对第三方服务提供商进行审查,确保其有能力保护用户的个人信息。 3.安全保护:开发者需要采取一系列安全措施来保护用户的个人信息,包括但不限于加密、访问控制、防止数据泄露等。 4.用户权利保护:开发者需要允许用户行使其在相关法律法规下享有的权利,包括查看、更正、删除个人信息等。 5.数据跨境流转:如果开发者将用户的个人信息传输到其他国家或地区,在符合相关法律法规的前提下,需要明确告知用户并获得其明确同意。 需要注意的是,以上仅为一般性的规范要求,具体的规定可能因地区和平台的不同而有所变化。因此,我建议你在开始开发小程序之前,查阅微信小程序官方文档和相关法律法规,以确保你的小程序合规并保护用户隐私。 希望以上信息对你有所帮助!如果你还有其他问题,可以继续提问。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

刘斩仙的笔记本

富贵险中求

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值