These links should get different response codes depending on the authorization:
Public
Auth protected content
Auth + foorole protected content
Auth + foorole or barrole protected content
Auth + barrole protected content
Auth + foorole and barrole protected content
Using FastAPI Depends
Introspect token (401 expected)
{% if resources %}
Resources for this provider:
{% for resource in resources %}
{{ resource.name }}
{% endfor %}
{% endif %}
{% if user_info_details %}
User info
-
{% for key, value in user_info_details.items() %}
- {{ key }}: {{ value }} {% endfor %}
Now is: {{ now.strftime("%T, %D") }}