{% extends "base.html" %} {% block title %}Authorization Error - Authly{% endblock %} {% block content %}

Authorization Error

Error: {{ error_code | upper }} {% if error_description %}
{{ error_description }} {% endif %}
{% if error_code == 'invalid_client' %}

The application you're trying to authorize is not recognized or has been disabled.

{% elif error_code == 'invalid_request' %}

The authorization request is missing required parameters or contains invalid values.

{% elif error_code == 'unauthorized_client' %}

This application is not authorized to use this authorization flow.

{% elif error_code == 'unsupported_response_type' %}

The authorization server does not support this response type.

{% elif error_code == 'invalid_scope' %}

The requested scope is invalid, unknown, or malformed.

{% elif error_code == 'server_error' %}

The authorization server encountered an unexpected condition that prevented it from fulfilling the request.

{% elif error_code == 'temporarily_unavailable' %}

The authorization server is currently unable to handle the request due to a temporary overloading or maintenance.

{% else %}

An error occurred during the authorization process. Please try again or contact the application provider.

{% endif %}
{% if client_name %} Close Window {% endif %}
{% if error_code in ['server_error', 'temporarily_unavailable'] %}

If this problem persists, please contact support.

{% if error_uri %}

Learn more about this error

{% endif %}
{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}