{% extends "base.html" %} {% block title %}OAuth Tokens - Mock API Admin{% endblock %} {% block content %}

OAuth Tokens

Manage OAuth 2.0 access and refresh tokens.

{% if error %} {% endif %}
Filters
Clear
{% for token in tokens %} {% else %} {% endfor %}
ID Access Token Client ID User ID Scopes Expires Status Actions
#{{ token.id }} {{ token.access_token[:20] }}... {{ token.client_id }} {% if token.user_id %}{{ token.user_id }}{% else %}{% endif %} {{ token.scopes | join(', ') }} {{ token.expires_at.strftime('%Y-%m-%d %H:%M') }} {% if token.expires_at < now %} Expired {% else %} Active {% endif %}

No OAuth tokens found.

{% if total_pages > 1 %} {% endif %}
{% endblock %}