Recent Topics
Bagisto API login without token lifetime
-
How I can use login api without lifetime? because I use it for mobile app
-
You can extend token lifetime by updating this in {your-project}\config\jwt.php file
assuming this is JWT_TTL=NULL in .env file.'ttl' => env('JWT_TTL', 60),
update 60 to your limit
I use this
'ttl' => env('JWT_TTL', 20160),