{% trans %}Privacy Policy{% endtrans %}
{% trans %}Overview{% endtrans %}
{% trans %} Auth Playground is a demonstration tool for OpenID Connect authentication. {% endtrans %}
{% trans %}What Data Is Handled{% endtrans %}
{% trans %}When you authenticate through Auth Playground, the following information is received from your identity provider:{% endtrans %}
- {% trans %}Access token:{% endtrans %} {% trans %}Used to access protected resources{% endtrans %}
- {% trans %}Refresh token:{% endtrans %} {% trans %}Used to obtain new access tokens (if provided){% endtrans %}
- {% trans %}ID token:{% endtrans %} {% trans %}Contains your identity information in JWT format{% endtrans %}
- {% trans %}User information:{% endtrans %} {% trans %}Profile data such as name, email, phone, address, groups, etc.{% endtrans %}
{% trans %}The exact data received depends on the scopes requested and what your identity provider shares.{% endtrans %}
{% trans %}How Data Is Stored{% endtrans %}
{% trans %}All authentication data is stored server-side in memory.{% endtrans %}
- {% trans %}Data is stored in server memory (RAM) only{% endtrans %}
- {% trans %}A secure session cookie is sent to your browser (containing only a session ID, not the actual data){% endtrans %}
- {% trans %}No database, files, or permanent storage is used{% endtrans %}
- {% trans %}All session data is lost when the application restarts{% endtrans %}
- {% trans %}Data is cleared when you log out{% endtrans %}
- {% if config.SESSION_PERMANENT %} {% trans timeout=config.PERMANENT_SESSION_LIFETIME|format_timedelta %}Sessions expire after {{ timeout }}{% endtrans %} {% else %} {% trans %}Sessions expire when you close your browser{% endtrans %} {% endif %}
{% trans %}Data Sharing{% endtrans %}
{% trans %}Auth Playground does not:{% endtrans %}
- {% trans %}Share your data with third parties{% endtrans %}
- {% trans %}Send data to external services{% endtrans %}
- {% trans %}Store data permanently{% endtrans %}
- {% trans %}Track your usage{% endtrans %}
- {% trans %}Use analytics or advertising{% endtrans %}
{% trans %}The only external communication is with your configured identity provider for authentication purposes.{% endtrans %}
{% trans %}Security Considerations{% endtrans %}
- {% trans %}Use only test accounts, not real user accounts{% endtrans %}
- {% trans %}Do not use sensitive or production data{% endtrans %}
- {% trans %}Ensure your deployment is properly secured (HTTPS, firewall, etc.){% endtrans %}
- {% trans %}Change the default{% endtrans %}
SECRET_KEY{% trans %}environment variable{% endtrans %}
{% trans %}Your Rights{% endtrans %}
- {% trans %}You can review the source code to understand data handling{% endtrans %}
- {% trans %}You can modify the application to suit your needs{% endtrans %}
{% trans %}Identity Provider's Privacy Policy{% endtrans %}
{% trans %}Your identity provider may have its own privacy policy regarding the data they collect and share. Please review their privacy policy for information about how they handle your data.{% endtrans %}