“Set JSON Web Token (JWT) wygasa w węźle JS” Kod odpowiedzi

Set JSON Web Token (JWT) wygasa w węźle JS

 var token = jwt.sign({email_id:'[email protected]'}, "Stack", {
        expiresIn: "10h" // it will be expired after 10 hours
        //expiresIn: "20d" // it will be expired after 20 days
        //expiresIn: 120 // it will be expired after 120ms
        //expiresIn: "120s" // it will be expired after 120s
 });
Jaimin Patel

Jak ustawić czas wygasania tokenu JWT w węźle JS

var token = jwt.sign({email_id:'[email protected]'}, "Stack", {

                        expiresIn: '24h' // expires in 24 hours

                         });
Fine Fly

Odpowiedzi podobne do “Set JSON Web Token (JWT) wygasa w węźle JS”

Pytania podobne do “Set JSON Web Token (JWT) wygasa w węźle JS”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu