library framework-oauth2
OAuth2 module for Infuse Framework
idealistsoft/framework-oauth2
OAuth2 module for Infuse Framework
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
oauth2
, (*1)
OAuth2 module for Infuse Framework, (*2)
Grant Types
Currently only these OAuth2 grant types are supported:
- Password (User Credentials), (*3)
Response Type
The response type generated by the POST /token
route is a JWT encoded access token., (*4)
Installation
- Install the package with composer:
composer require infuse/oauth2
-
Generate the private key with: openssl genrsa -out jwt_privkey.pem 2048
, (*5)
-
Generate the public key with: openssl rsa -in jwt_privkey.pem -pubout -out jwt_pubkey.pem
, (*6)
The public and private key should each be stored in the base directory of your app., (*7)
Acknowledgements
This project uses the awesome oauth2-server-php library by Brent Shaffer., (*8)
dev-master
9999999-dev
OAuth2 module for Infuse Framework
Sources
Download
MIT
The Requires
The Development Requires
authentication
framework
oauth
auth
jwt
oauth2
infuse