Today, we are install laravel 5.5 and install tymon/jwt-auth package in my laravel 5.5 application. and we are set service providers and aliases also. but when we are try to generate jwt key run by following command.
php artisan jwt:generate
After run above command you can face following error message in terminal.
Then we are search on google then i was realize in laravel 5.5 it was some changes in package configuration. and here i have share solution for it.
Solution
Please, install new dev version of tymon/jwt-auth package. this issue resolve in dev package development. so, again run following command for install dev version package.
composer require tymon/jwt-auth:dev-develop --prefer-source
[ADDCODE]
After install dev version package open your config/app.php file and replace old service provider to new like that.
'providers' => [
....
Tymon\JWTAuth\Providers\JWTAuthServiceProvider::class to
Tymon\JWTAuth\Providers\LaravelServiceProvider::class
],
After replace service provider then now run following command for generate jwt key
php artisan jwt:secret
This solution is fine work for me. so, we are also share with you.
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on harsukh21@gmail.com
PHP Count Number of Pages in PDF File
In this post, I will give you a simple e...How to Remove an Event Handler in jQuery
Use the jQuery off() Method You can s...Show Image Preview Before Upload In jQuery Bootstrap Example
Today, Laravelcode share one helpfull tu...How to detect if enter key is pressed in a text input field using jQuery
Use the keypress event To check wheth...How to remove elements from DOM in jQuery
Use the jQuery remove() method You ca...