PrefaceYesterday, there was a project that required the implementation of h5 WeChat authorization. So it took two hours to complete this function. Preparation before starting workProcess description [process communicated in advance]
Domain name, port
The domain name and port number are required because the domain name and port 80 are required for WeChat public account configuration and WeChat server callback. Here, the same domain name and port are adapted to the front-end and back-end IP addresses, and are processed through the nginx unified proxy. Ready to work
Configure WeChat public account Domain name configuration Upload the verification file to the server root path, otherwise the domain name configuration cannot be saved. Whitelist configuration Writing code import React, { useEffect } from "react"; import { View } from "@tarojs/components"; export default () => { useEffect(() => { // The path format of the backend callback: http://xxx.cn/#/pages/webAuthorization?bindFlag=0&openid=xxxxxxxxxxx&unionid=null&isAuth=true var isBindFlag = false, isAuth = false, opendId = '', paramsArray = []; /* * Omitted code: address determination, parameter processing and assignment to isAuth, isBindFlag, openId */ if (!isAuth) { // Unauthorized window.location.href=`https://open.weixin.qq.com/connect/oauth2/authorize?appid=${'xxxxxxx'}&redirect_uri=http://xxxxx/api/auth?response_type=code&scope=snsapi_userinfo&state=STATE&connect_redirect=1#wechat_redirect`; } else if (!isBindFlag) { // Not registered window.location.href = '#/pages/login' } else { // Login window.location.href = '#/pages/index' } }, []); return ( <View> </View> ); }; SummarizeThis is the end of this article about H5 WeChat public account authorization. For more relevant WeChat public account authorization content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Summary of the data storage structure of the nginx http module
>>: MySQL trigger definition and usage simple example
1. Construction 1. Prepare htpasswd.txt file The ...
Table of contents 1. About JavaScript 2. JavaScri...
Step 1: yum install httpd -y #Install httpd servi...
I encountered mysql ERROR 1045 and spent a long t...
The specific method of installing CentOS 7.0 on V...
Table of contents Class Component Functional Comp...
Today I was browsing the blog site - shoptalkshow...
Preface As a DBA, you will often encounter some M...
Combining the various problems I encountered in m...
need Add a paging bar, which can jump to the page...
After docker run, the status is always Exited Sol...
Windows Server 2012 and Windows Server 2008 diffe...
Part 1: Basics 1. Unlike pseudo-classes such as :...
Table of contents Question: answer: Reality: Know...
Here I use samba (file sharing service) v4.9.1 + ...