hypejunction / hypeapi
JWT support for Elgg
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Type:elgg-plugin
Requires
- composer/installers: ~1.0
- firebase/php-jwt: ^5.0
This package is auto-updated.
Last update: 2024-10-23 01:34:14 UTC
README
JWT token exchange and auth
Features
- Provides basic login, logout and refresh token endpoints
- Provides middleware to verify JWT token when accessing routes
- Provides a foundation to build out new API resources
Usage
Make sure Apache handles Authorization headers. Add the following to your .htaccess
RewriteEngine on
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]