{% extends "base.html" %} {% block title %}OAuth Tokens - Mock API Admin{% endblock %} {% block content %}
Manage OAuth 2.0 access and refresh tokens.
| 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. |
|||||||