{% extends "base.html" %} {% block title %}Authorize Application - StarPunk{% endblock %} {% block content %}

Authorization Request

An application is requesting access to your StarPunk site.

Application Details

Client:
{{ client_id }}
Your Identity:
{{ me }}
{% if scope %}
Requested Permissions:
    {% for s in scope.split() %}
  • {{ s }} - {% if s == 'create' %}Create new posts{% endif %}
  • {% endfor %}
{% else %}
Requested Permissions:
No permissions requested (read-only access)
{% endif %}

Warning: Only authorize applications you trust.

This application will be able to perform the above actions on your behalf.

{% if code_challenge %} {% endif %}

What does this mean?

By clicking "Authorize", you allow this application to access your StarPunk site with the permissions listed above. You can revoke access at any time from your admin dashboard.

If you don't recognize this application or didn't intend to authorize it, click "Deny" to reject the request.

{% endblock %}