File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,19 @@ services.AddAuthentication(options => /* Auth configuration */)
15
15
});
16
16
```
17
17
18
+ ### Production with Public Access Type
19
+
20
+ ``` csharp
21
+ services .AddAuthentication (options => /* Auth configuration */ )
22
+ .AddKeycloak (options =>
23
+ {
24
+ options .AccessType = KeycloakAuthenticationAccessType .Public ;
25
+ options .ClientId = " my-client-id" ;
26
+ options .Domain = " mydomain.local" ;
27
+ options .Realm = " myrealm" ;
28
+ });
29
+ ```
30
+
18
31
### Local Development with Docker
19
32
20
33
``` csharp
@@ -40,4 +53,6 @@ Only one of either `BaseAddress` or `Domain` is required to be set. If both are
40
53
41
54
## Optional Settings
42
55
43
- _ None._
56
+ | Property Name | Property Type | Description | Default Value |
57
+ | :------------ | :--------------------------------- | :--------------------------------------- | :---------------------------------------------- |
58
+ | ` AccessType ` | ` KeycloakAuthenticationAccessType ` | The Keycloak client's access token type. | ` KeycloakAuthenticationAccessType.Confidential ` |
You can’t perform that action at this time.
0 commit comments