Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everybody!
I'm setting up an integration with Json Web Token (JWT) and I want to create sessions longer than an hour, is this possible?
The payload I am using is the following:
const payload = {
jti: uid.sync(32),
sub: `${userName}`, // Usuário obtido do banco de dados
subType: "user",
name: `${userName}`,
email: `${email}`,
email_verified: true,
iat: Math.floor(Date.now() / 1000),
exp: Math.floor(Date.now() / 1000) + 60 * 60, //Here I want to increase the timeout to more than an hour
nbf: Math.floor(Date.now() / 1000),
iss: "myISS",
aud: "qlik.api/login/jwt-session",
groups: [
"Analytics Admin",
"Data Admin",
"Data Space Creator",
"Developer",
"Managed Space Creator",
"Shared Space Creator",
"Tenant Admin",
],
};
Sorry @MarcosPauloSR1, there is a typo in my previous message. What I was saying is that there is no way to change the session timeout in Qlik SaaS
Hello @MarcosPauloSR1 , there is now to change session timeout in Qlik SaaS
Hello! How can I make this change?
Sorry @MarcosPauloSR1, there is a typo in my previous message. What I was saying is that there is no way to change the session timeout in Qlik SaaS
Understood, thank you very much!