Detailed explanation of WeChat Mini Program official face verification

Detailed explanation of WeChat Mini Program official face verification

The mini program collected user personal information and uploaded it, but was rejected:

Hello, the functions of the Mini Program page involve: collecting user biometrics (face photos or videos) and other sensitive information for identity recognition or identification,

In order to protect users' sensitive privacy identity information, the platform does not currently support this function. Please remove the relevant features and submit again.

Then I searched on Baidu and found out that I needed to apply for

wx.startFacialRecognitionVerify({})

https://api.weixin.qq.com/cgi-bin/token?appid=appid&secret=secret&grant_type=client_credential

https://api.weixin.qq.com/cityservice/face/identify/getinfo?access_token=access_token

https://api.weixin.qq.com/cityservice/face/identify/getimage?access_token=access_token

First, you need to send two parameters to the interface you applied for: name and ID number

photo.js

data: {
    openid: '',
    custName: 'Name',
    custIdCard: 'ID card number',
    verifyImg: ''
  },
  /**
   * Life cycle function--listen for page loading*/
  onLoad: function (options) {
    this.setData({
      custName: options.custName,
      custIdCard: options.custIdCard
    });
    var _this = this;
    wx.checkIsSupportFacialRecognition({
      checkAliveType: 2,
      success: function (res) {
        if (res.errCode === 0 || res.errMsg === "checkIsSupportFacialRecognition:ok") {
          //Call face recognition_this.startface(_this.data.custName.replace(/(^\s*)|(\s*)$/g, ""), _this.data.custIdCard); //ID card name, ID card number return;
        }
        wx.showToast('The WeChat version is too low, this function cannot be used temporarily, please upgrade to the latest version of WeChat')
      },
      fail: function(res){
        wx.showToast('The WeChat version is too low, this function cannot be used temporarily, please upgrade to the latest version of WeChat')
      }

    })
  },
  startface(name, idcard) {
    console.log('I'm in!!!');
    var _this = this;
    wx.startFacialRecognitionVerify({
      name: _this.data.custName, //ID card name idCardNumber: _this.data.custIdCard, //ID card number success: function (res) {
        var verifyResult = res.verifyResult; //Authentication result //Call interface wx.request({
          url: 'https://api.weixin.qq.com/cgi-bin/token?appid=wx2cafec51ec4c2153&secret=8d3e68a5a2c702673340d72d1c7db4cc&grant_type=client_credential',
          data: {

          },
          method: 'POST',
          header: {
            'content-type': 'application/json;charset=utf-8'
          },
          success: function (res) {
            console.log(res.data);
            console.log(res.data.access_token)
            var token = res.data.access_token;
            wx.request({
              url: 'https://api.weixin.qq.com/cityservice/face/identify/getinfo?access_token=' + res.data.access_token,
              data: {
                verify_result: verifyResult
              },
              method: 'POST',
              header: {
                'content-type': 'application/json;charset=utf-8'
              },
              success: function (res) {
                console.log(res.data)
                console.log('I finally succeeded...')
                wx.request({
                  url: 'https://api.weixin.qq.com/cityservice/face/identify/getimage?access_token=' + token,
                  data: {
                    verify_result: verifyResult
                  },
                  method: 'POST',
                  responseType: 'arraybuffer',
                  header: {
                    'content-type': 'application/json;charset=utf-8',
                  },
                  success: (res) => {
                    // console.log('data:image/png;base64,'+wx.arrayBufferToBases64(res))

                    console.log(res.data);
                    var base64 = wx.arrayBufferToBase64(res.data);
                    _this.setData({ verifyImg:'data:image/png;base64,'+base64})
                    wx.navigateTo({
                      url: '../msg/msg?msg=Congratulations, your information verification is successful&verifyImg=' + _this.data.verifyImg
                    });
                  },
                  fail: function (res) {
                    console.log('failed', res.data)
                  }
                })

              },
              fail: function (res) {

              }
            })
          },
          fail: function (res) {

          }
        })



        console.log(verifyResult)
        // wx.navigateTo({
        // url: '../msg/msg?msg=Face verification successful'
        // });
      },
      checkAliveType: 2, //Screen flashes (interaction mode for face verification, default 0, read numbers)
      fail: err => {
        wx.showToast('Please keep the light sufficient, face the phone directly, and without any obstruction')
        wx.navigateTo({
          url: '../msg/msg?msg=Please keep the light sufficient, face the phone directly, and without any obstruction, please exit and try again'
        });
      }
    })
  }

The main pitfall is that you have to apply for the interface several times, and the final business still needs a unionid, so you have to apply for authentication on the WeChat open platform.

Then if you want to pull the image of the verification result, you need the above https://api.weixin.qq.com/cityservice/face/identify/getimage?access_token=access_token

The returned data needs to be converted into base64 code and then displayed on the image tag. I directly pass it to the backend.

Below is my msg js code

msg.js

const app = getApp();
Page({

  /**
   * Initial data of the page */
  data: {
    msg:'',
    verifyImg:'',
    url:app.globalData.PostData
  },

  /**
   * Life cycle function--listen for page loading*/
  onLoad: function (options) {
    var timestamp = Date.parse(new Date());
    timestamp = timestamp/1000
    console.log(options)
    var that = this;
    that.setData({
      msg:options.msg,
      verifyImg:options.verifyImg
    });
    console.log(that.data.url)
    console.log(that.data.verifyImg)
    
      wx.request({
        url: that.data.url+'fileUpload!upBase64.do', //Just an example, not a real interface addressdata: {
          file:that.data.verifyImg,
          filename:timestamp,
          filedata:that.data.verifyImg
        },
        method: 'POST',
        header: {
          'content-type': 'application/x-www-form-urlencoded;charset=utf-8'
        },
        success:function (res){
          const data = res.data
          console.log('success',data);
          //do something
        },
       fail:function(res){
         console.log('failed',res)
       }
        
      })
  }

Background upload base64 conversion code

public void upBase64() {
         System.out.println("======Start uploading pictures====");
         System.out.println(file);
        Json j = new Json();
        String FilePath = ServletActionContext.getServletContext().getRealPath(Constants.IMGPATH+"/"+Constants.PHOTOPATH);  
        File PathFile = new File(FilePath);
        try {
            // If it is IE, you need to set it to text/html, otherwise a pop-up window will pop up to download // response.setContentType("text/html;charset=UTF-8");
            response.setContentType("application/json;charset=UTF-8");

            String FileName = request.getParameter("filename");
            String FileData = request.getParameter("filedata");
            System.out.println(FileName+"**************"+FileData);
            if (null == FileData || FileData.length() < 50) {
                j.setMsg("Upload failed, data is too short or does not exist");
                j.setSuccess(false);
            } else {
                // Remove the unreasonable data at the beginning FileData = FileData.substring(30);
                FileData = URLDecoder.decode(FileData, "UTF-8");
                System.out.println("FileData="+FileData);
                byte[] data = FileUtil.decode(FileData);
                /*if (null == FileName || FileName.length() < 1) {
                    FileName = System.currentTimeMillis() + ".jpg";
                }*/
                // Write to file FileOutputStream outputStream = new FileOutputStream(new File(PathFile,FileName)); 
                outputStream.write(data); 
                outputStream.flush(); 
                outputStream.close(); 
                System.out.println(FileName+"**************"+FileData);
                j.setMsg("Upload successful");
                j.setSuccess(true);
            }
        } catch (Exception err) {
            j.setMsg("Upload failed");
            j.setSuccess(false);
            err.printStackTrace();
        }
        writeJson(j);
    }

The above is a detailed explanation of the official face authentication of WeChat Mini Program. For more information about the official face authentication of WeChat Mini Program, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • WeChat applet face recognition function code example
  • WeChat applet implements facial recognition login sample code
  • Mini Program to implement face recognition function (Baidu AI)
  • WeChat applet implements face detection function
  • WeChat applet implements face recognition
  • PHP implements WeChat applet face recognition login function

<<:  Correct use of MySQL partition tables

>>:  How to use firewall iptables strategy to forward ports on Linux servers

Recommend

getdata table table data join mysql method

public function json_product_list($where, $order)...

Website Building Tutorial for Beginners: Learn to Build a Website in Ten Days

The 10-day tutorial uses the most understandable ...

Detailed analysis and testing of SSD performance issues in MySQL servers

【question】 We have an HP server. When the SSD wri...

How to install and deploy MySQL 8.0 under CentOS8

MySQL 8 official version 8.0.11 has been released...

26 Commonly Forgotten CSS Tips

This is a collection of commonly used but easily ...

Comprehensive explanation of CocosCreator hot update

Table of contents Preface What is Hot Change Coco...

50 Super Handy Tools for Web Designers

Being a web designer is not easy. Not only do you...

CSS3 flexible box flex to achieve three-column layout

As the title says: The height is known, the width...

Node+Express test server performance

Table of contents 1 Test Environment 1.1 Server H...

Detailed explanation of Linux text processing tools

1. Count the number of users whose default shell ...

js to achieve drag and drop sorting details

Table of contents 1. Introduction 2. Implementati...

Docker runs operations with specified memory

as follows: -m, --memory Memory limit, the format...

Detailed explanation of mysql trigger example

Table of contents What is a trigger Create a trig...