https://github.com/ipunkt/laravel-oauth-introspection
OAuth 2.0 Token Introspection (RFC 7662)
https://github.com/ipunkt/laravel-oauth-introspection
Last synced: about 1 year ago
JSON representation
OAuth 2.0 Token Introspection (RFC 7662)
- Host: GitHub
- URL: https://github.com/ipunkt/laravel-oauth-introspection
- Owner: ipunkt
- License: mit
- Created: 2016-12-06T13:25:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-07-08T16:18:46.000Z (almost 4 years ago)
- Last Synced: 2024-11-17T12:47:56.259Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 17.6 KB
- Stars: 19
- Watchers: 4
- Forks: 9
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OAuth 2.0 Token Introspection
[](https://packagist.org/packages/ipunkt/laravel-oauth-introspection)
[](https://packagist.org/packages/ipunkt/laravel-oauth-introspection)
[](https://packagist.org/packages/ipunkt/laravel-oauth-introspection)
[](https://packagist.org/packages/ipunkt/laravel-oauth-introspection)
## 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](https://tools.ietf.org/html/rfc7662).
## License
OAuth 2.0 Token Introspection is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)