-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (73 loc) · 3.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>Resource Server</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body class="font-default" style="margin: 0; text-shadow: none;">
<div id="page_title">Resource Server</div>
<div id="content">
<p>
Resource server powered by
<b><a href="https://www.authlete.com/" target="_blank">Authlete</a></b>.
</p>
<table border="1" style="margin: 40px 20px;">
<thead>
<tr class="label">
<th>Endpoint</th>
<th>Path</th>
</tr>
</thead>
<tbody>
<tr>
<td valign="top">UserInfo Endpoint</td>
<td>/api/userinfo</td>
</tr>
<tr>
<td valign="top">Country Endpoint</td>
<td>/api/country/{country-code}</td>
</tr>
</tbody>
</table>
<table border="1" style="margin: 40px 20px;">
<tbody>
<tr>
<td valign="top" class="label">Management Console</td>
<td><a href="https://so.authlete.com/" target="_blank">https://so.authlete.com</a></td>
</tr>
<tr>
<td valign="top" class="label">Source Code</td>
<td><a href="https://github.com/authlete/java-resource-server"
target="_blank">https://github.com/authlete/java-resource-server</a></td>
</tr>
<tr>
<td valign="top" class="label">Libraries</td>
<td>
<a href="https://github.com/authlete/authlete-java-common"
target="_blank">https://github.com/authlete/authlete-java-common</a><br />
<a href="https://github.com/authlete/authlete-java-jaxrs"
target="_blank">https://github.com/authlete/authlete-java-jaxrs</a>
</td>
</tr>
</tbody>
</table>
<ol>
<li>
<a href="https://www.authlete.com/" target="_blank">Authlete</a>
is an OAuth 2.0 & OpenID Connect implementation on cloud
(<a href="https://www.authlete.com/documents/overview" target="_bank">overview</a>).
<li>
This resource server is written using Authlete's open source libraries.
<li>
You can manage settings of authorization servers by
<a href="https://so.authlete.com/" target="_blank">Service Owner Console</a>
(<a href="https://www.authlete.com/documents/so_console" target="_blank">document</a>).
<li>
You can manage settings of client applications by Developer Console
(<a href="https://www.authlete.com/documents/cd_console" target="_blank">document</a>).
</ol>
</div>
</body>
</html>