Skip to content

Commit 90a0f45

Browse files
committed
update README
1 parent 68f4b54 commit 90a0f45

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

README.md

+42
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,48 @@ Response
3434
}
3535
```
3636

37+
### Endpoints
38+
39+
Below are descriptions and examples of the important available endpoints
40+
41+
#### /auth/.well-known/openid-configuration
42+
43+
HttpMethod: `GET`
44+
Relative endpoint: `/auth/.well-known/openid-configuration`
45+
46+
Response
47+
48+
```json
49+
{
50+
"issuer": "aiof:auth",
51+
"token_endpoint": "http://localhost:5000/auth/token",
52+
"token_refresh_endpoint": "http://localhost:5000/auth/token/refresh",
53+
"response_types_supported": [
54+
"code token"
55+
],
56+
"subject_types_supported": [
57+
"public",
58+
"pairwise"
59+
],
60+
"token_endpoint_auth_signing_alg_values_supported": [
61+
"RS256"
62+
],
63+
"claim_types_supported": [
64+
"normal"
65+
],
66+
"claims_supported": [
67+
"sub",
68+
"iss",
69+
"public_key",
70+
"given_name",
71+
"family_name",
72+
"name",
73+
"email",
74+
"slug"
75+
]
76+
}
77+
```
78+
3779
## Documentation
3880

3981
Overall documentation for the AIOF Auth Microservice

aiof.auth.sln

+8
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "aiof.auth.services", "aiof.
1111
EndProject
1212
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "aiof.auth.tests", "aiof.auth.tests\aiof.auth.tests.csproj", "{B22FF405-EAF4-4067-AC54-D24C251ABF61}"
1313
EndProject
14+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C0500938-79F0-4C91-9792-0B5DE574203E}"
15+
ProjectSection(SolutionItems) = preProject
16+
azure-pipelines.yml = azure-pipelines.yml
17+
Dockerfile = Dockerfile
18+
LICENSE = LICENSE
19+
README.md = README.md
20+
EndProjectSection
21+
EndProject
1422
Global
1523
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1624
Debug|Any CPU = Debug|Any CPU

0 commit comments

Comments
 (0)