Home Backend Development PHP Tutorial How to implement authorization management of RESTful API in PHP

How to implement authorization management of RESTful API in PHP

Sep 06, 2023 pm 01:21 PM
php restful api Authorization management

如何在PHP中实现RESTful API的授权管理

How to implement authorization management of RESTful API in PHP

Introduction:
With the development of Web applications and the popularity of the Internet, more and more Applications need to provide RESTful APIs for data interaction with mobile terminals, third-party platforms, etc. In this process, authorization management has always been a very important issue. This article will introduce how to use PHP to implement authorization management of RESTful API to ensure the security of API interface.

1. What is authorization management of RESTful API?
In RESTful API, authorization refers to a verification mechanism for requests to access API resources. Through authorization management, API can identify the source of the request, identify the requester, and control permissions to ensure that only authorized users can access and operate API resources.

2. Use JSON Web Token (JWT) for authorization
JSON Web Token (JWT) is currently a popular protocol for authentication and authentication. It uses a stateless token mechanism, which is simple, safe and easy to use.

1. Generate Token
After the user logs in and the server successfully verifies the user's identity, it can generate a Token and return it to the client. Token contains some key user information.

<?php
use FirebaseJWTJWT;

$key = "your_secret_key";
$payload = array(
    "iss" => "your_domain", //签发者
    "aud" => "your_audience", //接收者
    "iat" => time(), //签发时间
    "exp" => time() + 3600, //过期时间
    "user_id" => "123456", //用户ID
    "user_name" => "Alice" //用户名
);

$token = JWT::encode($payload, $key);
?>
Copy after login

2. Verify Token
When accessing an API interface that requires authorization, the client passes the Token to the server through the request header or request parameters. After receiving the request, the server needs to verify the Token.

<?php
use FirebaseJWTJWT;

$key = "your_secret_key";
$token = $_GET['token']; //或者请求头中获取

try {
    $decoded = JWT::decode($token, $key, array('HS256'));
} catch (Exception $e) {
    //Token验证失败
}

$user_id = $decoded->user_id;
$user_name = $decoded->user_name;
?>
Copy after login

3. Use OAuth 2.0 for authorization
OAuth 2.0 is an open standard for authorization and is widely used in various web services. Using OAuth 2.0 can implement more complex authentication and authentication methods and provide richer permission control.

  1. Register application
    Before using OAuth 2.0, you need to register the application on the authentication server and obtain client_id and client_secret.
  2. Get authorization code
    After the user logs in on the client, he will be redirected to the authentication server authorization page. After the user agrees to the authorization, the authentication server will redirect back to the client with an authorization code. The client uses the authorization code to exchange with the authentication server to obtain access_token.
  3. Verify access_token
    When accessing an API interface that requires authorization, the client passes the access_token to the server through the request header or request parameters. After receiving the request, the server needs to verify the access_token.

The following is a code example of using PHP to implement OAuth 2.0 authorization:

<?php
$client_id = "your_client_id";
$client_secret = "your_client_secret";
$redirect_uri = "your_redirect_uri";

// 获取授权码
if (!isset($_GET['code'])) {
    $auth_url = "https://auth_server/authorize?client_id={$client_id}&redirect_uri={$redirect_uri}&response_type=code";
    header("Location: " . $auth_url);
    exit;
}

// 获取access_token
$code = $_GET['code'];
$token_url = "https://auth_server/token";
$params = array(
    'grant_type' => 'authorization_code',
    'client_id' => $client_id,
    'client_secret' => $client_secret,
    'redirect_uri' => $redirect_uri,
    'code' => $code
);
$options = array(
    'http' => array(
        'method' => 'POST',
        'header' => 'Content-type: application/x-www-form-urlencoded',
        'content' => http_build_query($params)
    )
);
$context = stream_context_create($options);
$response = file_get_contents($token_url, false, $context);
$result = json_decode($response);

$access_token = $result->access_token;

// 验证access_token
$url = "https://api_server/resource";
$options = array(
    'http' => array(
        'header' => "Authorization: Bearer {$access_token}"
    )
);
$context = stream_context_create($options);
$response = file_get_contents($url, false, $context);
?>
Copy after login

Conclusion:
When using PHP to implement authorization management for RESTful APIs, we can choose to use JSON Web Token (JWT) or OAuth 2.0 for authorization. JWT is suitable for simple authentication and authentication scenarios, while OAuth 2.0 is suitable for more complex authorization scenarios. No matter which method you choose, you need to consider security and performance, and reasonably design the permission control rules of the API interface to ensure the security and reliability of the API interface.

The above is the detailed content of How to implement authorization management of RESTful API in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles