search
HomeBackend DevelopmentPHP TutorialHow to do single-user app login in PHP

The current requirement is for an app to be used for communication tools such as QQ. Single user login. Logins from other places are blocked. Previous logins. I don’t know how to implement it. Has anyone done this?

Reply content:

The current requirement is for an app to be used for communication tools such as QQ. Single user login. Logins from other places are blocked. Previous logins. I don’t know how to implement it. Has anyone done this?

Collect the device information where the app is located, and bind the device information to the user. One user is allowed to use it on one device, and the user of the previous device is kicked out when logging in.

In the past six months, we have designed and implemented a single sign-on system (TnSSO). This is a very common system, but we have done a lot of in-depth and detailed research on functions and experience. Here is a summary and record. In the following, SSO also refers to this system.

TnSSO provides multiple login methods for the PC version and the mobile version. There are regular email accounts or mobile phone numbers to log in, joint login using Sina, QQ and other accounts, and mobile phone dynamic password login. In addition, it also targets different platforms. Each company also provides some special login methods to improve user experience. For example, when you open the company's shared link in WeChat, you can log in directly using WeChat authorization, while on the PC page, you can scan the QR code to log in.

Many of the current mobile App pages directly embed ordinary mobile web pages into the App. The App acts as a browser. Needless to say, there are advantages to this. Because the App native page login experience is better than opening a web page in the App and then logging in, we still use the native page login in the App. TnSSO is compatible with the App's native login method and can identify the login status of users in the App. In addition, you can also use the App to scan the QR code to log in to the PC version of SSO.

The following is a sequence diagram of single sign-on. The details will not be explained. Those who have not been exposed to it before should be able to understand what is going on by looking at the picture:

How to do single-user app login in PHP

Security and Experience
TnSSO has some very detailed considerations in terms of security and experience. On the premise of ensuring system security, the program optimizes the user experience to the maximum extent.
1. The entire process is HTTPS to prevent the communication between the client and the server from being eavesdropped.
2. Set the callback URL and whitelist. The client subsystem must first register with SSO to access SSO.
3. The token is valid once and is bound to the client subsystem, and is destroyed immediately after use.
4. In order to improve the user experience, users are not required to enter a verification code for the first three logins per IP per day, or the first dynamic password sent per mobile phone number per day.
5. A verification code will become invalid after being sent to the mobile phone dynamic password more than 3 times.
6. Wait...

Compatible with App login
App user login information is stored separately in the App and does not use the public login service provided by SSO. So when a user accesses an embedded webpage through an App, how does the webpage know the user's login status, and how can the embedded webpage and App login status be shared?

Our solution is that when the App accesses the embedded page PageA that requires login, PageA will 302 jump to the SSO login page. This process is all performed in the App, and the App is accessing the SSO login page. A hash value will be added to the cookie. After SSO receives the request, it first determines whether SSO itself is in the logged-in state. If not, it uses the hash value in the cookie to request the user ID from the App server. After obtaining the user ID, it generates user login information, and then brings the token to jump to the system where PageA is located. WebA's callback URL, WebA can log in by repeating the above login process. If the hash value is empty or the user ID retrieved from the App server based on the hash value is empty, jump to a URL used to be hijacked by the App, and repeat the above process after the App completes the login.

The App sets a hash value in the cookie instead of setting the user ID directly for security reasons. Only the user ID retrieved from the App server through SSO's own interface adjustment can ensure legitimacy and be trustworthy.
The timing diagram is as follows:
How to do single-user app login in PHP

Scan QR code to log in
Scan QR code to log in is a very popular practice now. Users have been logged in on their mobile phones or other mobile devices, and this is trustworthy. Use it to provide PC version login A shortcut, simple and fast, with a good experience. Users no longer need to enter long and complicated passwords that may not be remembered by the users themselves. Therefore, this login method is also what we must provide. Although it has not been officially released yet, it has already been planned and designed.
The specific implementation method is that the SSO server first randomly generates a non-conflicting code and stores it in the database, and draws it into a QR code image to display on the PC version login page. The page uses Javascript short polling to send the code to the server. Query the corresponding login information of this code. The App uses the built-in code scanning function to identify the code in the picture, and then requests the SSO interface through the App server using the code and the hash value of the user login information mentioned above as parameters. After receiving the request, SSO first determines whether the code exists in our database. If it exists, it means the request is legitimate, and then requests the App server to obtain the user ID using the hash value. The subsequent process is almost the same as the above mentioned connection with App login. JS polls to see that the user is logged in and then refreshes the page, or jumps back to where it came from.

How to do single-user app login in PHP

Finally, TnSSO not only provides unified login services, but also integrates user registration, password retrieval and other functions, so it is more appropriate to call it a pass system. It is the system with the highest requirements for stability and security in the company.

http://atlantisplus.net/articles/570.html

Looking at the many things done upstairs, it seems to be copied. Successful login records the timestamp and sets a cookie based on the timestamp. When logging in, the cookie is parsed and compared with the timestamp. In fact, just get a token, and update this token every time you log in successfully

One is like the one mentioned above that binds the uid and the device. Each operation detects whether the uid matches the current device.
There is also a third party like Huanxin that provides a single sign-on function and callback processing. , no need to make long links yourself

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use