2022-06-29 11:28:26 +02:00
|
|
|
{% extends "developer/client_details/base.html" %}
|
2019-08-16 12:03:45 +02:00
|
|
|
|
|
|
|
{% set client_details_page = "oauth_endpoint" %}
|
|
|
|
{% block client_details_content %}
|
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1 class="h2">OAuth2 endpoints</h1>
|
2021-04-01 11:05:21 +02:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="form-label">OpenID Connect Discovery Document</label>
|
|
|
|
<div class="input-group mt-2">
|
2022-06-29 11:28:26 +02:00
|
|
|
<input type="text"
|
|
|
|
disabled
|
|
|
|
value="{{ URL + "/.well-known/openid-configuration" }}"
|
|
|
|
class="form-control">
|
2021-04-01 11:05:21 +02:00
|
|
|
<span class="input-group-append">
|
2022-06-29 11:28:26 +02:00
|
|
|
<button data-clipboard-text="{{ URL + "/.well-known/openid-configuration" }}"
|
|
|
|
class="clipboard btn btn-primary"
|
|
|
|
type="button">
|
|
|
|
<i class="fe fe-clipboard"></i>
|
|
|
|
</button>
|
|
|
|
</span>
|
2021-04-01 11:05:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-08-16 12:03:45 +02:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="form-label">Authorization endpoint</label>
|
|
|
|
<div class="input-group mt-2">
|
2022-06-29 11:28:26 +02:00
|
|
|
<input type="text"
|
|
|
|
disabled
|
|
|
|
value="{{ URL + "/oauth2/authorize" }}"
|
|
|
|
class="form-control">
|
2019-08-16 12:03:45 +02:00
|
|
|
<span class="input-group-append">
|
2022-06-29 11:28:26 +02:00
|
|
|
<button data-clipboard-text="{{ URL + "/oauth2/authorize" }}"
|
|
|
|
class="clipboard btn btn-primary"
|
|
|
|
type="button">
|
|
|
|
<i class="fe fe-clipboard"></i>
|
|
|
|
</button>
|
|
|
|
</span>
|
2019-08-16 12:03:45 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="form-label">Token endpoint</label>
|
|
|
|
<div class="input-group mt-2">
|
2022-06-29 11:28:26 +02:00
|
|
|
<input type="text"
|
|
|
|
disabled
|
|
|
|
value="{{ URL + "/oauth2/token" }}"
|
|
|
|
class="form-control">
|
2019-08-16 12:03:45 +02:00
|
|
|
<span class="input-group-append">
|
2022-06-29 11:28:26 +02:00
|
|
|
<button data-clipboard-text="{{ URL + "/oauth2/token" }}"
|
|
|
|
class="clipboard btn btn-primary"
|
|
|
|
type="button">
|
|
|
|
<i class="fe fe-clipboard"></i>
|
|
|
|
</button>
|
|
|
|
</span>
|
2019-08-16 12:03:45 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="form-label">UserInfo endpoint</label>
|
|
|
|
<div class="input-group mt-2">
|
2022-06-29 11:28:26 +02:00
|
|
|
<input type="text"
|
|
|
|
disabled
|
|
|
|
value="{{ URL + "/oauth2/userinfo" }}"
|
|
|
|
class="form-control">
|
2019-08-16 12:03:45 +02:00
|
|
|
<span class="input-group-append">
|
2022-06-29 11:28:26 +02:00
|
|
|
<button data-clipboard-text="{{ URL + "/oauth2/userinfo" }}"
|
|
|
|
class="clipboard btn btn-primary"
|
|
|
|
type="button">
|
|
|
|
<i class="fe fe-clipboard"></i>
|
|
|
|
</button>
|
|
|
|
</span>
|
2019-08-16 12:03:45 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|