{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block content %}

Congratulations! It works.
... what's next?

Now that you are an OpenID Connect Provider, start by creating your clients here.

Also check that you've created at least one server key, do it here.

Server Endpoints

{% url 'oidc_provider:provider_info' %}
The configuration information of the provider. Read more.
{% url 'oidc_provider:jwks' %}
JavaScript Object Notation (JSON) data structure that represents a cryptographic key.
{% url 'oidc_provider:authorize' %}
This endpoint performs Authentication of the End-User. Read more.
{% url 'oidc_provider:token' %}
Used to obtain an Access Token, an ID Token, and optionally a Refresh Token. Read more.
{% url 'oidc_provider:userinfo' %}
OAuth 2.0 Protected Resource that returns Claims about the authenticated End-User. Read more.
{% url 'oidc_provider:logout' %}
Used to notify the OP that the End-User has logged out of the site. Read more.
{% endblock %}