laravel-jwt
laravel-jwt copied to clipboard
Dead simple, plug and play JWT API Authentication for Laravel (5.4+)
My use case was that only Authorization: Bearer should be allowed and not token via a GET or POST parameter. The requirement for this is to remove the risk of...
from Laravel 5.7+ Auth events are now accepting `guards` as a first parameter
Hi, I wanted to know the compatibility w/ Laravel 8 and PHP 7.4 / 8 ? Thank you
Was looking for a Tymon JWT alternative and found this repo. Looks nice but noticed, for example, that logout functionality is not implemented. So I was wondering if this repo...
Seems like this project is not maintained anymore? The last couple of issues had a response like "Will fix this today" but both branches did not have any changes accordingly....
I find myself wanting to do `$auth->login($user)->issue()` instead of multiple lines
After installation strictly according to the instructions, I have a exception: _Unresolvable dependency resolving [Parameter #0 [ $app ]] in class Codecasts\Auth\JWT\Auth\Guard_ in Container.php (line 910) Laravel 5.4.28 I did:...
I can call `$guard->logout()` successfully, but then I can use that same token for the user I just logged out to call authenticated routes afterwards. Looking at the function, it...
I see the default (and only) option with this library is HS-256. That's a perfectly viable option, but I'm curious to know if you've considered adding support RS-256 or RS-512...
> #### Token from User Credentials. > > This method should be used when you just registered a user and any other special cases. I think this should be "This...