I am building Rest Api and made changes in df.php file by setting
'allow_forever_sessions' => env('DF_ALLOW_FOREVER_SESSIONS', true)
and also use "remember_me":true in code for eg.
{
"id" : 5,
"email" : "Zxy@example.com",
"password" : "Zxy",
"remember_me":true
}
But, still facing token expiration issues. I want to make token life forever.
What can I do to make it alive ?.
Need help.
Thanks.