


OAuth protocol - PHP third-party login protocol, oauth protocol php third-party_PHP tutorial
OAuth protocol - PHP third party login protocol, oauth protocol php third party
MOOC.com Badguy teacher ’s conscience course!
There will always be times when I don’t want to do anything, but today’s days don’t allow personal indulgence. I usually only have these few choices: watch course videos, read books, and read novels. . It seems there is still something that can be done. Among them, watching the course videos is a bit boring, and I have to write code by hand. . It’s good to find a good teacher. Well, let’s study with badguy recently~
Take notes
1. About OAuth
The full name is Open Authorization, open protocol;
is a protocol for PHP to implement third-party login ;
The specific implementation is simplified into three major steps;
But this is what I personally recorded:
2. Before logging in
You need to apply/register to the website that "signed" the agreement (websites that plan to enable third-party login, such as MOOC.com to apply via qq);
Get the website’s unique client_id and client_secret;
3. When logging in
The user clicks "Other Login"——" (The first step of the three steps) The website sends a request to the QQ OAuth server, Request Token URL, and requests the service address, as shown below
https://graph.qq.com/oauth/...
client_id=100490398&...
redirect_uri=http://passport.mukewang.com%...
First there is the oauth identifier, then the client_id, and then the redirect_uri redirect address, which is the return address;
——》(Second step) The user sees the third-party login interface and enters information; here the code will be generated based on the user input, which is invisible to the user and generated directly in the background;
——》(Step 3) The QQ auth server returns the status to the website. For security reasons, there is a User authorization URL. There will be code, client_id, client_secret information for verification. At the same time, the code also has a life cycle. (very short, maybe 5s);
4. After logging in
In addition to realizing third-party login, OAuth also allows authorized websites to perform some functions, such as QQ’s one-click posting space. At this time, there is AccessToken (token), which has a normal life cycle. It will be 7 days; if it is gone, you can log in again to apply. There is also RefreshToken, which will automatically refresh the token;
5. Others
Regarding openness, it can refer to internal openness - for example, Taobao one account, Alipay and other Alibaba series can be used;
Externally-for example, Tencent accounts can be inserted everywhere. .
Last picture
I will continue to learn how to log in with QQ and log in with weibo~
-------------Update in 5 minutes-------------
The writing of Huo Ding’s Notes is also good, easy to understand, with pictures and examples, and it takes 5 minutes to read.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
