WeChat mini program new privacy agreement pop-up window implements the latest version

WeChat mini program new privacy agreement pop-up window implements the latest version

1. WeChat mini program has been updated again

Updated on 2023.08.22: [Original link]

Interfaces such as getPrivacySetting, onNeedPrivacyAuthorization, and requirePrivacyAuthorize involved in the following guidelines can now be debugged normally. Debugging instructions:

  1. Before September 15, 2023, after configuring in app.json __usePrivacyCheck__: true, privacy-related functions will be enabled. If not configured or configured to false, it will not be enabled.
  2. After September 15, 2023, regardless of whether there is configuration in app.json __usePrivacyCheck__, privacy-related functions will be enabled. uniapp needs to add " usePrivacyCheck ": true to manifest.json
 "mp-weixin" : {
        "appid" : "wx4xxxxxxxxa5c",
        "__usePrivacyCheck__": true
  },

Where the following interfaces are involved, a privacy agreement pop-up window needs to be added.

Information processed interface or component
Collect your nickname and avatar ,, wx.getUserInfo (recycled), wx.getUserProfile (recycled), (recycled)
Collect your location information wx.authorize({scope:‘scope.userLocation’})、wx.authorize({scope: ‘scope.userLocationBackground’})、wx.authorize({scope: ‘scope.userFuzzyLocation’})、wx.getLocation、wx.startLocationUpdate、wx.startLocationUpdateBackground、wx.getFuzzyLocation
Collect location information of your choice wx.choosePoi、wx.chooseLocation
collect your address wx.chooseAddress
Collect your invoice information wx.chooseInvoiceTitle、wx.chooseInvoice
Collect your WeChat exercise steps wx.authorize({scope: ‘scope.werun’})、wx.getWeRunData
Collect your mobile phone number
Collect your license plate number wx.chooseLicensePlate
Collect information about photos or videos you select wx.chooseImage、wx.chooseMedia、wx.chooseVideo
Collect your selected files wx.chooseMessageFile
access your microphone wx.authorize({scope: ‘scope.record’})、wx.startRecord、RecorderManager.start、、wx.joinVoIPChat
access your webcam wx.authorize({scope: ‘scope.camera’})、wx.createVKSession、、、
Access your Bluetooth wx.authorize({scope: ‘scope.bluetooth’})、wx.openBluetoothAdapter、wx.createBLEPeripheralServer
Use your album (write only) permissions wx.authorize({scope: ‘scope.writePhotosAlbum’})、wx.saveImageToPhotosAlbum、wx.saveVideoToPhotosAlbum
Use your address book (write only) permissions wx.authorize({scope: ‘scope.addPhoneContact’})、wx.addPhoneContact
Use your calendar (write only) permissions wx.authorize({scope: ‘scope.addPhoneCalendar’})、wx.addPhoneRepeatCalendar、wx.addPhoneCalendar
Call your acceleration sensor wx.stopAccelerometer、wx.startAccelerometer、wx.onAccelerometerChange、wx.offAccelerometerChange
Call your magnetic field sensor wx.stopCompass、wx.startCompass、wx.onCompassChange、wx.offCompassChange
调用你的方向传感器 wx.stopDeviceMotionListening、wx.startDeviceMotionListening、wx.onDeviceMotionChange、wx.offDeviceMotionChange
调用你的陀螺仪传感器 wx.stopGyroscope、wx.startGyroscope、wx.onGyroscopeChange、wx.offGyroscopeChange
读取你的剪切板 wx.setClipboardData、wx.getClipboardData

2. 实现思路

  1. 初始化进入小程序时先检测用户是否已经授权了隐私协议。如果没有授权,就弹出用户授权隐私协议的弹窗
  2. 用户点击确认授权,即可正常使用小程序
  3. 用户如果取消授权,当用户点击需要授权的功能,比如获取手机号的按钮,开启蓝牙的按钮等待涉及用户隐私的功能,就重新弹窗,让用户确认授权后,才能使用对应的功能。否则只能浏览页面,无法使用小程序的功能。
  4. 隐私协议的名字和内容都是通过微信接口获得的。
    获取隐私协议名字接口
 uni.getPrivacySetting({
          success: res => {
            console.log("是否需要授权:", res.needAuthorization, "隐私协议的名称为:", res.privacyContractName)
          },
          fail: () => {
          },
          complete: () => {},
        })

获取隐私协议内容接口如下,调用该方法会自动进入隐私协议详情页面。

 openYsXyDetail(){
      uni.openPrivacyContract({});
},
  1. 如果是原生小程序只需要把下方代码实现中的所有uni.替换为wx.即可使用

3. 实现效果

用户初始化进入小程序时,弹出授权窗口,用户点击登录按钮时,如果未授权也弹出此窗口
在这里插入图片描述

4. 代码实现

<template>
  <view class="login-page">
<!--    当用户点击授权同意隐私协议后才可以正常点击登录按钮获取手机号码-->
    <button open-type="getPhoneNumber" @getphonenumber="authPhone" v-if="ysxy.agree">
      <u-icon name="fingerprint" color="#2979ff" size="68"></u-icon>
    </button>
    <!--    当用户未授权同意意思协议时,打开授权隐私协议的弹窗,否则无法登录系统-->
    <button v-else @click="ysxy.show = true">
      <u-icon name="fingerprint" color="#2979ff" size="68"></u-icon>
    </button>
    <u-modal v-model="ysxy.show" :negative-top="200" title="用户隐私提示保护" :show-confirm-button="false"
             :mask-close-able="true">
      <view class="slot-content" >
        <view class="ysbox">
          感谢您使用本产品,您使用本产品前应当仔细阅读并同意<span  @click="openYsXyDetail" class="ysname">{
   
   { ysxy.name }}</span>
          当您点击同意并开始使用产品服务时,即表示你已理解并同意该条款内容,该条款将对您产生法律约束力。如您拒绝,将无法更好的体验产品。
        </view>
        <div class="auth-btncard">
          <div class="btn-unok">
            <u-button :hair-line='false' :custom-style="customStyleUnOk" @click="ysxy.show=false">
              拒绝</u-button>
          </div>
          <div class="btn-ok">
            <u-button :hair-line='false' :custom-style="customStyleOk" open-type="agreePrivacyAuthorization"
                      @click="ysxy.show=false;ysxy.agree=true;"> 同意</u-button>
          </div>
        </div>
      </view>
    </u-modal>
  </view>
</template>
<script>
import global from "../../common/utils/global";
export default {
  data() {
    return {
      ysxy:{
        show:false,
        name:'《小程序隐私保护指引》',
        agree:false
      },
      customStyleOk: {
        marginTop: '20rpx', // 注意驼峰命名,并且值必须用引号包括,因为这是对象
        border: 'none',
        color: '#157DFB'
      },
      customStyleUnOk: {
        marginTop: '20rpx', // 注意驼峰命名,并且值必须用引号包括,因为这是对象
        border: 'none',
        color: 'gray'
      },
    }
  },
  onLoad(option) {
    //#ifdef MP-WEIXIN
    this.initYsxy();
    //#endif
  },
  methods: {
    openYsXyDetail(){
      uni.openPrivacyContract({});
    },
    initYsxy(){
      this.ysxy.agree = false;
      let _this=this;
      if (uni.getPrivacySetting) {
        uni.getPrivacySetting({
          success: res => {
            console.log("是否需要授权:", res.needAuthorization, "隐私协议的名称为:", res.privacyContractName)
            if (res.needAuthorization) {
              _this.ysxy.name = res.privacyContractName
              _this.ysxy.show = true;
            } else {
              //已经同意了
              _this.ysxy.agree = true;
            }
          },
          fail: () => {
          },
          complete: () => {},
        })
      }
    },
  }
}
</script>
<style lang="scss" scoped>
.ysbox{
  margin: 40rpx;
  .ysname{
    color: #157DFB;
  }
}
.auth-btncard {
  .btn-unok {
    width: 50%;
    float: left;
  }
  .btn-ok {
    width: 50%;
    float: left;
    margin: 0;
    padding: 0;
    border: 0px solid transparent; //自定义边框
    outline: none; //消除默认点击蓝色边框效果
    u-button {
      margin: 0;
      padding: 0;
      border: 0px solid transparent; //自定义边框
      outline: none; //消除默认点击蓝色边框效果
    }
  }
}

</style>


Guess you like

Origin blog.csdn.net/qq_35921773/article/details/132638793