{% extends 'base.html' %} {% block title %}API Tokens - Packs{% endblock %} {% block content %}
Tokens let non-browser clients (like a Fabric mod) access the API and download packs.
Send credentials as Authorization: Bearer <username> <token>,
e.g. Authorization: Bearer {{ request.user.username }} <token>
| Label | Credential | Created | Last used | |
|---|---|---|---|---|
| {{ token.label }} | {{ request.user.username }} {{ token.token }} |
{{ token.created_at }} | {{ token.last_used|default:"never" }} |
No tokens yet.
{% endif %} {% endblock %}