GitHub user dosubot[bot] added a comment to the discussion: How can I increase or change the expiration time of the JWT returned by /api/v1/security/guest_token/ in Superset
<!-- Answer --> You can increase the expiration time of the JWT returned by /api/v1/security/guest_token/ by setting the GUEST_TOKEN_JWT_EXP_SECONDS configuration variable in your superset_config.py file. The default is 300 seconds (5 minutes), but you can set it to any number of seconds you prefer. For example, to set the token to expire after 1 hour: ```python GUEST_TOKEN_JWT_EXP_SECONDS = 3600 # 1 hour ``` There is no environment variable for this; it must be set in superset_config.py. Keep in mind that longer-lived tokens can increase security risks if they are leaked or intercepted, so choose an expiration time that balances user experience and security for your use case. [Reference](https://github.com/apache/superset/blob/master/superset/config.py) <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/374d8f63-6a18-4e8a-8813-6ecf98067321?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/374d8f63-6a18-4e8a-8813-6ecf98067321?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/374d8f63-6a18-4e8a-8813-6ecf98067321?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/374d8f63-6a18-4e8a-8813-6ecf98067321?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/374d8f63-6a18-4e8a-8813-6ecf98067321?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/374d8f63-6a18-4e8a-8813-6ecf98067321?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/374d8f63-6a18-4e8a-8813-6ecf98067321?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github)& nbsp;[](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/35995) GitHub link: https://github.com/apache/superset/discussions/35995#discussioncomment-14877636 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
