-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lombiq.OrchardCoreApiClient.Tester.OpenId.recipe.json
68 lines (68 loc) · 2.16 KB
/
Lombiq.OrchardCoreApiClient.Tester.OpenId.recipe.json
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
{
"name": "Lombiq.OrchardCoreApiClient.Tester.OpenId",
"displayName": "Lombiq API Client for Orchard Core - Tester App - OpenId",
"description": "Set up the OpenId server and application to allow access to the web APIs from the Tester App of Lombiq API Client for Orchard Core.",
"author": "Lombiq Technologies",
"website": "https://github.com/Lombiq/Orchard-Core-API-Client",
"version": "1.0",
"issetuprecipe": false,
"categories": [ "test" ],
"tags": [ "test" ],
"steps": [
{
"name": "feature",
"enable": [
"OrchardCore.Contents",
"OrchardCore.ContentTypes",
"OrchardCore.OpenId",
"OrchardCore.OpenId.Management",
"OrchardCore.OpenId.Server",
"OrchardCore.OpenId.Validation",
"OrchardCore.Taxonomies",
"OrchardCore.Tenants"
]
},
{
"name": "OpenIdServerSettings",
"AccessTokenFormat": "JsonWebToken",
"DisableAccessTokenEncryption": false,
"EnableTokenEndpoint": true,
"EnableAuthorizationEndpoint": false,
"EnableLogoutEndpoint": false,
"EnableUserInfoEndpoint": false,
"EnableIntrospectionEndpoint": false,
"EnableRevocationEndpoint": false,
"AllowPasswordFlow": false,
"AllowClientCredentialsFlow": true,
"AllowAuthorizationCodeFlow": false,
"AllowRefreshTokenFlow": false,
"AllowHybridFlow": false,
"AllowImplicitFlow": false,
"DisableRollingRefreshTokens": false,
"RequireProofKeyForCodeExchange": false,
"UseReferenceAccessTokens": false
},
{
"name": "openidapplication",
"ClientId": "Console",
"DisplayName": "Console",
"Type": "Confidential",
"ClientSecret": "Password",
"EnableTokenEndpoint": true,
"EnableAuthorizationEndpoint": false,
"EnableLogoutEndpoint": false,
"EnableUserInfoEndpoint": false,
"AllowPasswordFlow": false,
"AllowClientCredentialsFlow": true,
"AllowAuthorizationCodeFlow": false,
"AllowRefreshTokenFlow": false,
"AllowImplicitFlow": false,
"RoleEntries": [
{
"Name": "Administrator",
"Selected": true
}
]
}
]
}