-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauto-config.json
43 lines (43 loc) · 1.24 KB
/
auto-config.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
{
"Sample": {
"Title": "Android mobile app native authentication using Microsoft Entra External ID",
"Level": 200,
"Client": "Android"
},
"AppRegistrations": [
{
"x-ms-id": "ciam-android-native-app",
"x-ms-name": "ms-identity-ciam-android-native-app",
"x-ms-version": "1.0",
"allowNativeAuth": true,
"replyUrlsWithType": [
{
"url": "msal{AppId}://auth",
"type": "InstalledClient"
}
],
"requiredResourceAccess": [
{
"x-ms-resourceAppName": "Microsoft Graph",
"resourceAppId": "00000003-0000-0000-c000-000000000000",
"resourceAccess": [
{
"id": "e1fe6dd8-ba31-4d61-89e7-88639da4683d",
"type": "Scope",
"x-ms-name": "user.read"
}
]
}
],
"codeConfigurations": [
{
"settingFile": "app/src/main/res/raw/auth_config_native_auth.json",
"replaceTokens": {
"appId": "Enter_the_Application_Id_Here",
"tenantName": "Enter_the_Tenant_Subdomain_Here"
}
}
]
}
]
}