定制 bmatovu/oauth-negotiator 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bmatovu/oauth-negotiator

最新稳定版本:v2.1.0

Composer 安装命令:

composer require bmatovu/oauth-negotiator

包简介

OAuth2 client token manager.

README 文档

README

Total Downloads Latest Stable Version License

OAuth negotiator is a PHP Guzzle HTTP v6.x Client Middleware that will help you acquire, and refresh your access tokens automatically per application request to the OAuth2 server so you don't have to worry about non-existent or expired access tokens.

This package works by tapping into each request.

  • First, checking if the request has an authorization header; if present, proceed to execute the request.
  • If the request has no set authorization header, the available access token in storage is then added as the request authorization header.
  • If no access token is present in storage, it shall request for a new access token from the OAuth server using the main grant type specified.
  • If there's an existing access token in storage, but it's expired, and a refresh token grant was specified, it shall try to refresh the expired access token using the available refresh token.

See flowchart for detailed process illustration.

Grant types

The package supports four grant types out of box, that is; Client Credentials, Refresh Token, Password, and the Authorization Code grant type*.

You can implement your own custom grant type by simply implementing the GrantTypeInterface.

Tokens

These are the object mapping to the real life access token you would get from an OAuth Server. They implement the TokenInterface.

Token storage

The package also defaults to a file based persistent token storage, but you can still implement your custom persistent storage, say a session based token storage by implementing the TokenRepositoryInterface.

Exceptions

  • TokenNotFoundException thrown by the token repository whenever in case of an unknown token.
  • TokenRequestException thrown by grant type on failure to acquire an access token.

Source code documentation

Installation

The package can be installed via composer.

composer require bmatovu/oauth-negotiator

Usage

Auto-load the package using composer so that it's available in your application scope.

<?php
    
    require __DIR__ . '/../vendor/autoload.php';
    
    // do something...

Real documentation is still a work in progress, but for now examine the tests.

统计信息

  • 总下载量: 11.67k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 1
  • 依赖项目数: 3
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-03-26