-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JWT? #43
Comments
Laravel Passport uses firebase/jwt and lcobucci/jwt to generate tokens. Why you need another way of authentication? |
Oh it does? I will look more into it. Using JWT to secure multiple API endpoints, so you can pass authentication between 2+ APIs. |
JWT is just a token format. Here all generated tokens are in JWT format. This means that they contain some information that is signed by the server. OAUTH2 is a standard way of generating those tokens for different cases. You can see a good discussion about JwT and Oauth difference. |
JWT support maybe?
https://github.com/tymondesigns/jwt-auth
Thanks.
The text was updated successfully, but these errors were encountered: