{% if request_info %}

📡 Informations de la requĂȘte

Méthode HTTP
{{ request_info.method }}
Chemin
{{ request_info.path }}
{% if request_info.query %}
ParamĂštres de requĂȘte
{{ request_info.query }}
{% endif %}
{% if request_info.headers %}

En-tĂȘtes HTTP

{% for key, value in request_info.headers %} {% endfor %}
Nom Valeur
{{ key }} {{ value }}
{% endif %}
{% endif %}