ipunkt / laravel-oauth-introspection by rokde

OAuth 2.0 Token Introspection implementation for extending Laravel Passport (RFC 7662)
685
19
4
Package Data
Maintainer Username: rokde
Maintainer Contact: r.kummer@ipunkt.biz (Robert Kummer)
Package Create Date: 2016-12-06
Package Last Update: 2022-07-08
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-15 03:03:30
Package Statistics
Total Downloads: 685
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 19
Total Watchers: 4
Total Forks: 9
Total Open Issues: 7

OAuth 2.0 Token Introspection

Total Downloads Latest Stable Version Latest Unstable Version License

Introduction

OAuth 2.0 Introspection extends Laravel Passport to separate the authorization server and the resource server.

To verify an access token at the resource server the client sends it as bearer token to the resource server and the resource server makes an introspection server-to-server call to verify data and signature of the given token.

Installation

Just install the package on your authorization server

composer require ipunkt/laravel-oauth-introspection

and add the Service Provider in your config/app.php

\Ipunkt\Laravel\OAuthIntrospection\Providers\OAuthIntrospectionServiceProvider::class,

Official Documentation

Documentation for OAuth 2.0 Token Introspection can be found on the RFC 7662.

License

OAuth 2.0 Token Introspection is open-sourced software licensed under the MIT license