hypejunction/hypeapi

JWT support for Elgg

1.0.1 2019-08-22 13:43 UTC

This package is auto-updated.

Last update: 2024-03-23 00:04:53 UTC


README

Elgg 3.0

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]