{% extends "silk/base/base.html" %} {% load silk_filters %} {% load silk_inclusion %} {% load static %} {% block pagetitle %}Silky - {{ silk_request.method }} {{ silk_request.path }}{% endblock %} {% block style %} {% endblock %} {% block js %} {% endblock %} {% block menu %} {% request_menu request silk_request %} {% endblock %} {% block data %}
{{ query_params }}
| {{ k.upper }} | {{ v }} |
The raw request body is {{ silk_request.raw_body|length }} characters — view raw.
{% else %}{{ silk_request.raw_body }}
{% endif %}
Processed as JSON for readability.
{% if silk_request.body|length > 1000 %}Body is {{ silk_request.body|length }} characters — view body.
{% else %}{{ silk_request.body }}
{% endif %}
| {{ k.upper }} | {{ v }} |
The raw response body is {{ raw_body|length }} characters — view raw.
{% else %}{{ raw_body }}
{% endif %}
{% endwith %}
Processed as JSON for readability.
{% if silk_request.response.body|length > 1000 %}Response body is {{ silk_request.response.body|length }} characters — view body.
{% else %}{{ silk_request.response.body }}
{% endif %}
Paste into a terminal to repeat this request.
{{ curl.strip }}
Python code to replicate this request in a Django unit test.
{{ client.strip }}