Map Server is stateless for login user management. The user's session is not stored on the server side. We use JWT (Json Web Token) for user’s privileges management.
The JWT contains signed information about the user's privileges and other information. Each http request contains the token as a header to obtain access.
So the first parameter corresponds to the value of the JWT and the second one to the lifetime of this JWT.
Map Server is stateless for login user management. The user's session is not stored on the server side. We use JWT (Json Web Token) for user’s privileges management.
The JWT contains signed information about the user's privileges and other information. Each http request contains the token as a header to obtain access.
So the first parameter corresponds to the value of the JWT and the second one to the lifetime of this JWT.