Specific use of the wx.getUserProfile interface in the applet

Specific use of the wx.getUserProfile interface in the applet

Recently, WeChat Mini Program has proposed adjustments to the wx.login and wx.getUserInfo interfaces for the audit mini program, and proposed a new interface for developers to call

The following figure is the official document details for the new interface

Click to visit the official website for more details

insert image description here

insert image description here

It is worth noting that the new interface wx.getUserProfile can only be called using catchtap or bindtap (ps: it can be used in wx.showmodel), and cannot be called directly in onload, onshow, etc., and the return parameters have changed.

The following figure shows the data type returned by the new interface wx.getUserProfile

// An highlighted block
 wx.showModal({
   title: 'Warm Tips',
   content: 'Requesting your personal information',
   success(res) {
     if (res.confirm) {
       wx.getUserProfile({
       desc: "Get your nickname, avatar, region and gender",
       success: res => {
         console.log(res)
         let wxUserInfo = res.userInfo;
       },
       fail: res => {
       	 //Reject authorization that.showErrorModal('You rejected the request');
         return;
       }
     })} else if (res.cancel) {
       //Reject authorization showErrorModal is a custom prompt that.showErrorModal('You rejected the request');
       return;
     }
   }
 })

insert image description here

The new version of wx.login interface returns. The interface return of wx.getUserInfo remains unchanged for the time being. User information can no longer be directly obtained.

wx.login

insert image description here

wx.getUserInfo

insert image description here

I spent some time working on this new interface. Maybe I am not very good at it (no, ヽ(≧□≦)ノ). Anyway, this matter has finally come to a head, right? I hope this can help more friends! <( ̄︶ ̄)>

This is the end of this article about the specific use of the wx.getUserProfile interface of the mini program. For more relevant content about the wx.getUserProfile interface of the mini program, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Axios-like request encapsulated based on the applet request interface wx.request
  • The applet encapsulates the wx.request request and creates an interface management file
  • WeChat applet wx.request (interface calling method) detailed explanation and examples

<<:  MySQL's conceptual understanding of various locks

>>:  Analysis of Hyper-V installation CentOS 8 problem

Recommend

Ideas and practice of multi-language solution for Vue.js front-end project

Table of contents 1. What content usually needs t...

How to use the concat function in mysql

As shown below: //Query the year and month of the...

my.cnf (my.ini) important parameter optimization configuration instructions

MyISAM storage engine The MyISAM storage engine i...

Summary of some common techniques in front-end development

1. How to display the date on the right in the art...

How to enable MySQL remote connection in Linux server

Preface Learn MySQL to reorganize previous non-MK...

About Vue virtual dom problem

Table of contents 1. What is virtual dom? 2. Why ...

JavaScript basics for loop and array

Table of contents Loop - for Basic use of for loo...

A brief talk about JavaScript variable promotion

Table of contents Preface 1. What variables are p...

React Native JSI implements sample code for RN and native communication

Table of contents What is JSI What is different a...

How to decrypt Linux version information

Displaying and interpreting information about you...

Analyzing the node event loop and message queue

Table of contents What is async? Why do we need a...

Super simple qps statistics method (recommended)

Statistics of QPS values ​​in the last N seconds ...

Implementation of deploying Apollo configuration center using docker in CentOS7

Apollo open source address: https://github.com/ct...