-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathmkdocs.yml
More file actions
1161 lines (1136 loc) · 85.4 KB
/
mkdocs.yml
File metadata and controls
1161 lines (1136 loc) · 85.4 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) 2023-2025, WSO2 LLC. (https://www.wso2.com).
#
# WSO2 LLC. licenses this file to you under the Apache License,
# Version 2.0 (the "License"); you may not use this file except
# in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
INHERIT: ../is_common.yml
# Project information
site_url: https://is.docs.wso2.com/en/7.0.0
# Repository
edit_uri: https://github.com/wso2/docs-is/edit/master/en/identity-server/7.0.0/docs/
extra:
base_path: /en/7.0.0
is_version: 7.0.0
content:
default_keystore_type: JKS
default_keystore_ext: jks
identity_apps_core_release_url: https://github.com/wso2/identity-apps/releases/tag/identity-apps-core-2.1.31
sdkconfig:
baseUrl: "https://localhost:9443"
org_resources_shared: "Applications, Roles (with shared apps), Users"
org_resources_created: "Connections (IdPs), Users, Groups, Roles, Branding, Templates, Userstores, User attributes, Login and registration customizations, Adaptive scripts"
org_resources_inherited: "API resources, Parent branding (when the organization doesn't configure branding)"
home_page_cards:
- section:
- title: Get Started
icon: octicons/rocket-16
icon_color: icon-color-1
list_items:
- title: Introduction
url: Get started|Introduction
- title: Quick Setup
url: Get started|Quick Setup
- title: Connect React App
url: Get started|Connect App|React|Quickstart
- title: Connect Angular App
url: Get started|Connect App|Angular Quickstart
- title: Connect Next.js App
url: Get started|Connect App|Next.js Quickstart
- title: Connect Spring Boot App
url: Get started|Connect App|Spring Boot Quickstart
- title: Community and Support
icon: octicons/light-bulb-16
icon_color: icon-color-2
list_items:
- title: Contributing to the Project
url: https://github.com/wso2/product-is/wiki/Contributing-to-Identity-Server
- title: Community Help
url: https://discord.com/invite/wso2
- title: Enterprise Support
url: https://wso2.com/subscription/
- section:
- title: Developer Resources
icon: octicons/tools-16
icon_color: icon-color-3
list_items:
- title: APIs
url: APIs|APIs
- title: Sample Apps
url: Get started|Try for a sample app|Try for a sample app
- title: SDKs and Integrations
url: SDKs|Integrate WSO2 IS into your application
- title: Setup
icon: octicons/gear-16
icon_color: icon-color-1
list_items:
- title: Install
url: Setup|Install|Install
- title: Configure
url: Setup|Configure|User Stores|User Stores
- title: Secure
url:
- title: Deploy
url: Setup|Deploy|Deployment overview|Deployment Patterns
- title: Monitor
url: Setup|Monitor|Monitor
- title: Upgrade WSO2 Identity Server
url: Setup|Upgrade WSO2 Identity Server
- section:
- title: Guides
icon: octicons/book-16
icon_color: icon-color-4
list_items:
- title: Applications
url: Guides|Applications|Applications
- title: Authentication
url: Guides|Authentication|Authentication
- title: Authorization
url: Guides|Authorization|Authorization
- title: Branding
url: Guides|Branding|Branding
- title: User management
url: Guides|User management|User management
- title: User self-service
url: Guides|User self-service|User self-service
- title: Organizations
url: Guides|Organizations|Organizations
hooks:
- hooks.py
plugins:
- search:
indexing: "full"
separator: "[^\\w._]+"
lang: ['en']
prebuild_index: true
ngram_length: 30
- markdownextradata: {}
- include-markdown
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
skip_classes:
- skip-glightbox
auto_caption: false
caption_position: bottom
- redirects:
redirect_maps:
'get-started/sample-use-cases/set-up.md': 'get-started/quick-set-up.md'
'get-started/sample-use-cases/sample-scenario.md': 'get-started/start-integrating-apps/index.md'
'get-started/sample-use-cases/single-sign-on.md': 'get-started/start-integrating-apps/index.md'
'get-started/sample-use-cases/multi-factor-authentication.md': 'guides/authentication/mfa/index.md'
'get-started/sample-use-cases/federated-authentication.md': 'guides/authentication/federated-login/index.md'
'get-started/sample-use-cases/self-sign-up.md': 'guides/user-self-service/self-register.md'
'guides/before-you-start.md': 'guides/index.md'
'guides/authentication-overview.md': 'guides/authentication/index.md'
'guides/login/login-overview.md': 'guides/authentication/add-login-to-apps.md'
'guides/login/webapp-oidc.md': 'guides/authentication/add-login-to-web-app.md'
'guides/login/webapp-saml.md': 'guides/authentication/add-login-to-web-app.md'
'guides/login/webapp-ws-federation.md': 'guides/authentication/enterprise-login/add-iwa-login.md'
'guides/login/sso-for-oidc.md': 'guides/authentication/enterprise-login/add-oidc-idp-login.md'
'guides/login/sso-for-saml.md': 'guides/authentication/enterprise-login/add-saml-idp-login.md'
'guides/login/oidc-backchannel-logout.md': 'guides/authentication/oidc/add-back-channel-logout.md'
'guides/authentication/enterprise-login/index.md': 'guides/authentication/standard-based-login/index.md'
'guides/authentication/enterprise-login/add-oidc-idp-login.md': 'guides/authentication/standard-based-login/add-oidc-idp-login.md'
'guides/authentication/enterprise-login/add-saml-idp-login.md': 'guides/authentication/standard-based-login/add-saml-idp-login.md'
'guides/request-path-auth/request-paths-overview.md': 'guides/authentication/app-native-authentication/add-app-native-authentication.md'
'guides/request-path-auth/oauth-request-path.md': 'guides/authentication/app-native-authentication/add-app-native-authentication.md'
'guides/authentication/add-application-native-login.md': 'guides/authentication/app-native-authentication/add-app-native-authentication.md'
'guides/passwordless/overview.md': 'guides/authentication/passwordless-login.md'
'guides/passwordless/magic-link.md': 'guides/authentication/passwordless-login/add-passwordless-login-with-magic-link.md'
'guides/passwordless/fido.md': 'guides/authentication/passwordless-login/add-passwordless-login-with-passkey.md'
'guides/passwordless/fido-attestation.md': 'guides/authentication/passwordless-login/fido-attestation.md'
'guides/mfa/mfa-overview.md': 'guides/authentication/mfa/index.md'
'guides/mfa/2fa-totp.md': 'guides/authentication/mfa/add-totp-login.md'
'guides/mfa/2fa-email-otp.md': 'guides/authentication/mfa/add-emailotp-login.md'
'guides/mfa/2fa-sms-otp.md': 'guides/authentication/mfa/add-smsotp-login.md'
'guides/mfa/2fa-fido.md': 'guides/authentication/mfa/add-passkey-login.md'
'guides/mfa/x509.md': 'guides/authentication/mfa/add-x509-login.md'
'guides/mfa/email-otp-config-advanced.md': 'guides/authentication/mfa/add-emailotp-login.md'
'guides/mfa/totp-config-advanced.md': 'guides/authentication/mfa/add-totp-login.md'
'guides/mfa/sms-otp-config-advanced.md': 'guides/authentication/mfa/add-smsotp-login.md'
'guides/adaptive-auth/configure-adaptive-auth.md': 'guides/authentication/conditional-auth/index.md'
'guides/adaptive-auth/adaptive-auth-overview.md': 'guides/authentication/conditional-auth/configure-conditional-auth.md'
'guides/adaptive-auth/role-based-adaptive-auth.md': 'guides/authentication/conditional-auth/role-based-template.md'
'guides/adaptive-auth/age-based-adaptive-auth.md': 'guides/authentication/conditional-auth/user-age-based-template.md'
'guides/adaptive-auth/tenant-based-adaptive-auth.md': 'guides/authentication/conditional-auth/configure-conditional-auth.md'
'guides/adaptive-auth/user-store-based-adaptive-auth.md': 'guides/authentication/conditional-auth/user-store-based-template.md'
'guides/adaptive-auth/ip-based-adaptive-auth.md': 'guides/authentication/conditional-auth/ip-based-template.md'
'guides/adaptive-auth/device-based-adaptive-auth.md': 'guides/authentication/conditional-auth/new-device-based-template.md'
'guides/adaptive-auth/login-attempts-based-adaptive-auth.md': 'guides/authentication/conditional-auth/login-attempt-based-template.md'
'guides/elk-analytics/elk-configuring-risk-based-adaptive-authentication.md': 'guides/authentication/conditional-auth/elk-risk-based-template.md'
'guides/adaptive-auth/adaptive-auth-with-function-lib-sample.md': 'guides/authentication/conditional-auth/write-your-first-script.md'
'guides/adaptive-auth/limiting-active-sessions-adaptive-auth.md': 'guides/authentication/conditional-auth/concurrent-session-based-template.md'
'guides/identity-federation/identity-federation-overview.md': 'guides/authentication/standard-based-login/index.md'
'guides/identity-federation/enterprise-identity-federation.md': 'guides/authentication/enterprise-login/add-iwa-login.md'
'guides/identity-federation/configure-saml-2.0-web-sso.md': 'guides/authentication/standard-based-login/add-saml-idp-login.md'
'guides/identity-federation/configure-oauth2-openid-connect.md': 'guides/authentication/standard-based-login/add-oidc-idp-login.md'
'guides/identity-federation/configure-ad-fs-as-a-federated-authenticator.md': 'guides/authentication/enterprise-login/add-ad-fs-login.md'
'guides/identity-federation/configure-ws-federation.md': 'guides/authentication/standard-based-login/index.md'
'guides/identity-federation/configure-ws-trust.md': 'guides/authentication/standard-based-login/index.md'
'guides/identity-federation/configure-shibboleth-idp.md': 'guides/authentication/standard-based-login/add-saml-idp-login.md'
'guides/identity-federation/social-login.md': 'guides/authentication/social-login/index.md'
'guides/identity-federation/facebook.md': 'guides/authentication/social-login/add-facebook-login.md'
'guides/identity-federation/google.md': 'guides/authentication/social-login/add-google-login.md'
'guides/identity-federation/twitter.md': 'guides/authentication/social-login/add-x-login.md' # Assuming no direct match, redirected to a placeholder
'guides/identity-federation/microsoft-login.md': 'guides/authentication/social-login/add-microsoft-login.md'
'guides/identity-federation/iwa-kerberos.md': 'guides/authentication/enterprise-login/add-iwa-login.md'
'guides/identity-federation/apple.md': 'guides/authentication/social-login/add-apple-login.md'
'guides/access-delegation/access-delegation.md': 'guides/authentication/oidc/index.md'
'guides/access-delegation/auth-code-playground.md': 'guides/authentication/oidc/implement-auth-code.md'
'guides/access-delegation/client-credentials-playground.md': 'references/grant-types.md'
'guides/access-delegation/try-device-flow.md': 'references/grant-types.md'
'guides/access-delegation/configure-refresh-token.md': 'references/grant-types.md'
'guides/access-delegation/implicit-playground.md': 'references/grant-types.md'
'guides/access-delegation/password-playground.md': 'references/grant-types.md'
'guides/access-delegation/saml2-bearer-assertion-profile.md': 'references/grant-types.md'
'guides/access-delegation/configure-kerberos-grant.md': 'guides/authentication/enterprise-login/add-iwa-login.md'
'guides/access-delegation/configure-jwt-grant.md': 'references/grant-types.md'
'guides/access-delegation/invoke-oauth-introspection-endpoint.md': 'guides/authentication/oidc/token-validation-resource-server.md'
'guides/access-delegation/oauth-dynamic-client-registration.md': 'apis/use-the-openid-connect-dynamic-client-registration-rest-apis.md'
'guides/access-delegation/private-key-jwt-client-authentication-for-oidc.md': 'guides/authentication/oidc/private-key-jwt-client-auth.md'
'guides/access-delegation/oauth-token-revocation.md': 'guides/authentication/oidc/revoke-tokens.md'
'guides/identity-lifecycles/user-management.md': 'guides/users/index.md'
'guides/identity-lifecycles/onboard-overview.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/admin-creation-workflow.md': 'guides/users/manage-administrators.md'
'guides/identity-lifecycles/invitation-workflow.md': 'guides/account-configurations/user-onboarding/invite-user-to-set-password.md'
'guides/identity-lifecycles/self-registration-workflow.md': 'guides/user-self-service/self-register.md'
'guides/identity-lifecycles/bulk-import-users.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/manage-user-overview.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/search-users.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/delete-users.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/update-profile.md': 'guides/user-self-service/update-profile-info.md'
'guides/identity-lifecycles/customize-profiles.md': 'guides/users/attributes/manage-attributes.md'
'guides/identity-lifecycles/manage-user-attributes.md': 'guides/users/attributes/manage-attributes.md'
'guides/identity-lifecycles/track-deletion.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/manage-roles-overview.md': 'guides/users/manage-roles.md'
'guides/identity-lifecycles/add-user-roles.md': 'guides/users/manage-roles.md'
'guides/identity-lifecycles/edit-delete-roles.md': 'guides/users/manage-roles.md'
'guides/identity-lifecycles/role-based-permissions.md': 'guides/users/manage-roles.md'
'guides/identity-lifecycles/lock-account.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/lock-accounts-by-failed-login-attempts.md': 'guides/account-configurations/login-security/login-attempts.md'
'guides/identity-lifecycles/lock-accounts-by-failed-otp-attempts.md': 'guides/account-configurations/login-security/login-attempts.md'
'guides/tenants/account-locking-per-user.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/associate-accounts.md': 'guides/user-self-service/manage-linked-accounts.md'
'guides/identity-lifecycles/enable-account.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/recover-username.md': 'guides/account-configurations/account-recovery/username-recovery.md'
'guides/identity-lifecycles/resend-account-recovery-mail.md': 'guides/account-configurations/account-recovery/username-recovery.md'
'guides/tenants/user-operation-notifications.md': 'guides/users/manage-users.md'
'guides/password-mgt/password-mgt-overview.md': 'guides/account-configurations/login-security/password-validation.md'
'guides/password-mgt/password-policies.md': 'guides/account-configurations/login-security/password-validation.md'
'guides/password-mgt/forced-password-reset.md': 'guides/account-configurations/account-recovery/admin-initiated-password-reset.md'
'guides/password-mgt/recover-password.md': 'guides/user-self-service/user-password-recovery.md'
'guides/identity-lifecycles/provisioning-overview.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/provisioning-patterns.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/role-based-provisioning.md': 'guides/users/manage-roles.md'
'guides/identity-lifecycles/rule-based-provisioning.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/outbound-provisioning.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/outbound-provisioning-with-scim.md': 'guides/users/user-stores/configure-user-stores-for-scim2.md'
'guides/identity-lifecycles/configure-on-demand-provisioning-with-azure-ad.md': 'guides/users/user-stores/configure-active-directory-user-stores-for-scim2.md'
'guides/identity-lifecycles/outbound-provisioning-with-google.md': 'guides/users/user-stores/configure-secondary-user-stores.md'
'guides/identity-lifecycles/outbound-provisioning-with-salesforce.md': 'guides/users/user-stores/configure-secondary-user-stores.md'
'guides/identity-lifecycles/hubspot-provisioning.md': 'guides/users/user-stores/configure-secondary-user-stores.md'
'guides/identity-lifecycles/inbound-provisioning.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/configure-user-stores-for-scim1.1-based-inbound-provisioning.md': 'guides/users/user-stores/configure-user-stores-for-scim2.md'
'guides/identity-lifecycles/configure-user-stores-for-scim2-based-inbound-provisioning.md': 'guides/users/user-stores/configure-user-stores-for-scim2.md'
'guides/identity-lifecycles/configure-active-directory-user-stores-for-scim-1.1-based-inbound-provisioning.md': 'guides/users/user-stores/configure-active-directory-user-stores-for-scim2.md'
'guides/identity-lifecycles/configure-active-directory-user-stores-for-scim-2.0-based-inbound-provisioning.md': 'guides/users/user-stores/configure-active-directory-user-stores-for-scim2.md'
'guides/identity-lifecycles/sp-for-inbound-provisioning.md': 'guides/users/manage-users.md'
'guides/identity-lifecycles/self-register-verification.md': 'guides/account-configurations/user-onboarding/self-registration.md'
'guides/identity-lifecycles/enable-email-account-verification-for-an-updated-email-address.md': 'guides/users/attributes/manage-attributes.md'
'guides/identity-lifecycles/enable-verification-for-updated-mobile-number.md': 'guides/users/attributes/manage-attributes.md'
'guides/my-account/my-account.md': 'guides/user-self-service/configure-self-service-portal.md'
'guides/my-account/manage-own-profile.md': 'guides/user-self-service/update-profile-info.md'
'guides/my-account/export-my-user-profile.md': 'guides/user-self-service/export-profile-information.md'
'guides/my-account/link-own-accounts.md': 'guides/user-self-service/manage-linked-accounts.md'
'guides/my-account/reset-own-password.md': 'guides/user-self-service/change-password.md'
'guides/my-account/recover-user-account.md': 'guides/user-self-service/user-password-recovery.md'
'guides/my-account/enable-mfa-my-account.md': 'guides/user-self-service/enable-totp.md'
'guides/my-account/manage-active-sessions.md': 'guides/user-self-service/manage-login-sessions.md'
'guides/my-account/manage-consent-my-account.md': 'guides/user-self-service/manage-consents.md'
'guides/elk-analytics/elk-analytics.md': 'guides/analytics/index.md'
'guides/elk-analytics/elk-accessing-the-analytics-dashboard.md': 'guides/analytics/accessing-the-analytics-dashboard.md'
'guides/elk-analytics/elk-analyzing-login-attempts.md': 'guides/analytics/analyzing-login-attempts.md'
'guides/elk-analytics/elk-analyzing-session-statistics.md': 'guides/analytics/analyzing-active-sessions.md'
'guides/elk-analytics/elk-alert-types.md': 'guides/analytics/elk-alert-types.md'
'guides/analytics/index.md': 'guides/analytics/elk-analytics/index.md'
'guides/analytics/accessing-the-analytics-dashboard.md': 'guides/analytics/elk-analytics/accessing-the-analytics-dashboard.md'
'guides/analytics/analyzing-login-attempts.md': 'guides/analytics/elk-analytics/analyzing-login-attempts.md'
'guides/analytics/analyzing-active-sessions.md': 'guides/analytics/elk-analytics/analyzing-active-sessions.md'
'guides/analytics/elk-alert-types.md': 'guides/analytics/elk-analytics/elk-alert-types.md'
'guides/dialects/dialects-overview.md': 'guides/users/attributes/index.md'
'guides/dialects/add-claim-dialects.md': 'guides/users/attributes/manage-attributes.md'
'guides/dialects/edit-claim-dialects.md': 'guides/users/attributes/manage-attributes.md'
'guides/dialects/delete-claim-dialects.md': 'guides/users/attributes/manage-attributes.md'
'guides/dialects/configure-claims.md': 'guides/users/attributes/manage-attributes.md'
'guides/dialects/add-claim-mapping.md': 'guides/users/attributes/manage-attributes.md'
'guides/dialects/edit-claim-mapping.md': 'guides/users/attributes/manage-attributes.md'
'guides/dialects/delete-claim-mapping.md': 'guides/users/attributes/manage-attributes.md'
'guides/dialects/configure-unique-claims.md': 'guides/users/attributes/configure-unique-attributes.md'
'guides/identity-lifecycles/enable-email-as-username.md': 'guides/users/attributes/enable-email-as-username.md'
'guides/users/manage-collaborators.md': 'guides/users/manage-administrators.md'
'guides/users/manage-customers.md': 'guides/users/manage-users.md'
'guides/user-self-service/register-security-key.md': 'guides/user-self-service/register-passkey.md'
'deploy/get-started/get-started-with-the-management-console.md': 'guides/your-is/manage-console-access.md'
'deploy/get-started/customize-the-management-console.md': 'guides/your-is/manage-console-access.md'
'guides/mfa/mfa-for-management-console.md': 'guides/your-is/manage-console-access.md'
'deploy/configure-the-realm.md': 'guides/users/user-stores/index.md'
'deploy/configure-the-authorization-manager.md': 'deploy/configure/user-stores/configure-authorization-manager.md'
'deploy/configure-the-system-administrator.md': 'deploy/configure/user-stores/configure-system-administrator.md'
'deploy/configure-user-stores.md': 'guides/users/user-stores/index.md'
'deploy/configure-the-primary-user-store.md': 'guides/users/user-stores/primary-user-store/index.md'
'deploy/configure-a-jdbc-user-store.md': 'guides/users/user-stores/primary-user-store/configure-a-jdbc-user-store.md'
'deploy/configure-a-read-only-ldap-user-store.md': 'guides/users/user-stores/primary-user-store/configure-a-read-only-ldap-user-store.md'
'deploy/configure-a-read-write-active-directory-user-store.md': 'guides/users/user-stores/primary-user-store/configure-a-read-write-active-directory-user-store.md'
'deploy/configure-a-read-write-ldap-user-store.md': 'guides/users/user-stores/primary-user-store/configure-a-read-write-ldap-user-store.md'
'deploy/add-high-availability-for-ldap.md': 'deploy/configure/user-stores/configure-high-availability-ldap.md'
'deploy/configure-secondary-user-stores.md': 'guides/users/user-stores/configure-secondary-user-stores.md'
'deploy/work-with-properties-of-user-stores.md': 'guides/users/user-stores/user-store-properties/index.md'
'deploy/secure-userstore-using-pbkdf2.md': 'deploy/configure/user-stores/secure-userstore-using-pbkdf2.md'
'deploy/work-with-databases.md': 'deploy/configure/databases/index.md'
'deploy/change-to-ibm-db2.md': 'deploy/configure/databases/carbon-database/change-to-ibm-db2.md'
'deploy/change-to-mariadb.md': 'deploy/configure/databases/carbon-database/change-to-mariadb.md'
'deploy/change-to-mssql.md': 'deploy/configure/databases/carbon-database/change-to-mssql.md'
'deploy/change-to-mysql.md': 'deploy/configure/databases/carbon-database/change-to-mysql.md'
'deploy/change-to-oracle.md': 'deploy/configure/databases/carbon-database/change-to-oracle.md'
'deploy/change-to-oracle-rac.md': 'deploy/configure/databases/carbon-database/change-to-oracle-rac.md'
'deploy/change-to-postgresql.md': 'deploy/configure/databases/carbon-database/change-to-postgresql.md'
'deploy/change-to-remote-h2.md': 'deploy/configure/databases/carbon-database/change-to-remote-h2.md'
'deploy/change-datasource-consent-management.md': 'deploy/configure/databases/carbon-database/change-datasource-consent-management.md'
'deploy/change-datasource-registry-data.md': 'deploy/configure/databases/carbon-database/change-datasource-registry-data.md'
'deploy/enable-fips-for-is.md': 'deploy/security/enable-fips-for-is.md'
'apis/overview.md': 'apis/index.md'
'apis/idp-rest-api.md': 'apis/idp.md'
'apis/scim-1.1-apis.md': 'apis/scim2-users-rest-apis.md'
'sdks/sdk-overview.md': 'integrations/index.md'
'sdks/start-integrating-apps/integrate-a-react-app.md': 'integrations/index.md'
'sdks/start-integrating-apps/integrate-an-angular-app.md': 'integrations/index.md'
'sdks/start-integrating-apps/integrate-a-js-app.md': 'integrations/index.md'
'sdks/spring-boot.md': 'integrations/index.md'
'deploy/security/security-guidelines-for-production-deployment.md': 'deploy/security/security-guidelines/index.md'
'deploy/security/network-level-security-guidelines.md': 'deploy/security/security-guidelines/network-level-security-guidelines.md'
'deploy/security/os-level-security-guidelines.md': 'deploy/security/security-guidelines/os-level-security-guidelines.md'
'deploy/security/product-level-security-guidelines.md': 'deploy/security/security-guidelines/product-level-security-guidelines.md'
'deploy/security/use-asymmetric-encryption.md': 'deploy/security/keystores/index.md'
'deploy/security/asymmetric-encryption/use-asymmetric-encryption.md': 'deploy/security/keystores/index.md'
'deploy/security/create-new-keystores.md': 'deploy/security/keystores/create-new-keystores.md'
'deploy/security/asymmetric-encryption/create-new-keystores.md': 'deploy/security/keystores/create-new-keystores.md'
'deploy/security/configure-keystores-in-wso2-products.md': 'deploy/security/keystores/configure-keystores.md'
'deploy/security/asymmetric-encryption/configure-keystores-in-wso2-products.md': 'deploy/security/keystores/configure-keystores.md'
'deploy/security/renew-a-ca-signed-certificate-in-a-keystore.md': 'deploy/security/keystores/manage-ca-signed-certificates-in-a-keystore.md'
'deploy/security/asymmetric-encryption/renew-a-ca-signed-certificate-in-a-keystore.md': 'deploy/security/keystores/manage-ca-signed-certificates-in-a-keystore.md'
'deploy/security/add-multiple-keys-to-the-primary-keystore.md': 'deploy/security/keystores/configure-keystores.md'
'deploy/security/asymmetric-encryption/add-multiple-keys-to-the-primary-keystore.md': 'deploy/security/keystores/configure-keystores.md.md'
'deploy/security/symmetric-overview.md': 'deploy/security/symmetric-encryption/index.md'
'deploy/security/use-symmetric-encryption.md': 'deploy/security/symmetric-encryption/use-symmetric-encryption.md'
'deploy/monitor/monitor-the-identity-server.md': 'deploy/monitor/index.md'
'references/concepts/compliance/compliance.md': 'deploy/compliance/index.md'
'references/concepts/compliance/accessibility-compliance-wso2-is.md': 'deploy/compliance/index.md'
'references/concepts/compliance/gdpr.md': 'deploy/compliance/gdpr.md'
'references/concepts/compliance/ccpa.md': 'deploy/compliance/ccpa.md'
'references/references-overview.md': 'references/index.md'
'references/concepts/user-management/roles-and-permissions.md': 'references/user-management/user-roles.md'
'references/concepts/user-management/userstores.md': 'guides/users/user-stores/index.md'
'references/concepts/user-management/realm.md': 'guides/users/user-stores/index.md'
'references/concepts/claim-management.md': 'guides/users/attributes/index.md'
'references/concepts/authorization/access-control.md': 'references/authorization-policies-for-apps.md'
'guides/applications/service-provider-overview.md': 'guides/applications/index.md'
'guides/applications/register-sp.md': 'guides/applications/index.md'
'guides/applications/configure-claims-for-sp.md': 'guides/users/attributes/index.md'
'guides/applications/roles-and-permissions-for-sp.md': 'guides/users/manage-roles.md'
'guides/applications/inbound-auth-for-sp.md': 'guides/applications/index.md'
'guides/applications/local-outbound-auth-for-sp.md': 'guides/applications/index.md'
'guides/applications/inbound-provisioning-for-sp.md': 'guides/applications/index.md'
'guides/applications/outbound-provisioning-for-sp.md': 'guides/applications/index.md'
'guides/applications/manage-sp.md': 'guides/applications/index.md'
'guides/applications/resident-sp.md': 'guides/applications/index.md'
'guides/identity-federation/basic-overview.md': 'guides/authentication/index.md'
'guides/identity-federation/add-idp.md': 'guides/authentication/index.md'
'guides/identity-federation/roles-idp.md': 'guides/authentication/index.md'
'guides/identity-federation/claims-idp.md': 'guides/authentication/index.md'
'guides/identity-federation/federated-authenticator.md': 'guides/authentication/index.md'
'guides/identity-federation/jit-workflow.md': 'guides/authentication/index.md'
'guides/identity-federation/manage-idp.md': 'guides/authentication/index.md'
'guides/identity-federation/resident-idp.md': 'guides/authentication/index.md'
'guides/identity-federation/resident-inbound-auth.md': 'guides/authentication/index.md'
'guides/identity-federation/resident-inbound-provisioning.md': 'guides/authentication/index.md'
'guides/identity-federation/resident-jit-consent.md': 'guides/authentication/index.md'
'guides/organization-management/invite-parent-organization-users.md': 'guides/organization-management/onboard-users.md'
'guides/organization-management/email-domain-based-organization-discovery.md': 'guides/organization-management/organization-discovery/email-domain-based-organization-discovery.md'
'references/concepts/introduction-to-multitenancy.md': 'guides/multitenancy/index.md'
'references/extend/oauth2/write-a-custom-oauth-2.0-grant-type.md': 'references/extend/authentication/oauth2/write-a-custom-oauth-2.0-grant-type.md'
'references/extend/write-custom-functions-for-adaptive-authentication.md': 'references/extend/authentication/conditional-auth/write-custom-functions-for-conditional-authentication.md'
'references/extend/provisioning/extend-scim2-user-schemas.md': 'references/extend/user-mgt/provisioning/extend-scim2-user-schemas.md'
'references/extend/write-a-custom-user-store-manager.md': 'references/extend/user-stores/write-a-custom-user-store-manager.md'
'references/extend/myaccount/customize-my-account-ui.md': 'guides/branding/configure-ui-branding.md'
'references/extend/myaccount/configure-my-account.md': 'guides/branding/configure-ui-branding.md'
'references/extend/rebranding/rebrand-identity-server-uis.md': 'guides/branding/configure-ui-branding.md'
'references/extend/rebranding/rebrand-login-pages-for-service-providers.md': 'guides/branding/configure-ui-branding.md'
'references/extend/rebranding/rebrand-the-sso-redirection-page.md': 'guides/branding/configure-ui-branding.md'
'references/extend/rebranding/customizable-login-portal.md': 'guides/branding/configure-ui-branding.md'
'references/adaptive-authentication-js-api-reference.md': 'references/conditional-auth/api-reference.md'
'guides/authorization/xacml-engine.md': 'guides/authorization/fine-grained-authorization/rule-based-provisioning.md'
'guides/authorization/fine-grained-auth-xacml.md': 'guides/authorization/fine-grained-authorization/rule-based-provisioning.md'
'references/concepts/authorization/client-credential-grant.md': 'references/grant-types.md'
'references/concepts/authorization/grant-types.md': 'references/grant-types.md'
'references/concepts/authorization/authorization-code-grant.md': 'references/grant-types.md'
'references/concepts/authorization/implicit-grant.md': 'references/grant-types.md'
'references/concepts/authorization/resource-owner-grant.md': 'references/grant-types.md'
'references/concepts/authorization/refresh-token-grant.md': 'references/grant-types.md'
'references/concepts/authorization/device-flow-grant.md': 'references/grant-types.md'
'references/concepts/authorization/jwt-bearer-grant-type.md': 'references/grant-types.md'
'references/concepts/authorization/saml2-bearer-assertion-profile.md': 'references/grant-types.md'
'references/concepts/authorization/kerberos-grant.md': 'references/grant-types.md'
'references/concepts/authorization/introspection.md': 'guides/authentication/oidc/token-validation-resource-server.md'
'references/extend/errors/customize-authentication-error-messages.md': 'guides/account-configurations/login-security/login-attempts.md'
'references/extend/errors/error-codes-and-descriptions.md': 'references/troubleshoot/error-codes.md'
'references/error-catalog.md': 'references/troubleshoot/api-error-codes.md'
'guides/organization-management/onboard-sub-org-admins.md': 'guides/organization-management/onboard-org-admins.md'
'guides/authentication/app-native-authentication/configure-advanced-app-native-settings.md': 'guides/authentication/app-native-authentication/index.md'
'apis/scim2-users-rest-apis.md': 'apis/scim2/scim2-users-rest-api.md'
'apis/scim2-groups-rest-apis.md': 'apis/scim2/scim2-groups-rest-api.md'
'apis/build-scim2-user-creation-payload.md': 'apis/scim2/build-scim2-user-creation-payload.md'
'apis/scim2-patch-operations.md': 'apis/scim2/scim2-patch-operations.md'
'apis/scim2-bulk-rest-apis.md': 'apis/scim2/scim2-bulk-rest-api.md'
'apis/scim2-batch-operations.md': 'apis/scim2/scim2-batch-operations.md'
'apis/scim2-sp-config-rest-apis.md': 'apis/scim2/scim2-sp-config-rest-api.md'
'apis/organization-apis/org-scim2-bulk-mgt.md': 'apis/organization-apis/scim2/scim2-org-bulk.md'
'apis/organization-apis/org-user-mgt.md': 'apis/organization-apis/scim2/scim2-org-user-mgt.md'
'apis/organization-apis/org-group-mgt.md': 'apis/organization-apis/scim2/scim2-org-group-mgt.md'
'apis/use-the-dynamic-client-registration-rest-apis.md' : 'apis/dynamic-client-registration-rest-api.md'
'guides/users/attributes/manage-attributes.md': 'guides/users/attributes/user-attributes/manage-attributes.md'
# To address the broken links in the API Authorization guides due to the directory structure mismatch is Asgardeo and IS
'guides/api-authorization.md': 'guides/authorization/api-authorization/api-authorization.md'
'guides/authorization/impersonation/user-impersonation.md': 'guides/authorization/user-impersonation.md'
'deploy/deploy-is-in-kubernetes.md': 'deploy/deploy-is-on-kubernetes.md'
# Navigation
nav:
- Home:
- Home: index.md
- Get started:
- Introduction: get-started/quick-start-guide.md
- Quick Setup: get-started/quick-set-up.md
# - Start integrating apps:
# - Start integrating apps: get-started/start-integrating-apps/index.md
# - Try for a sample app:
# - Try for a sample app: get-started/try-samples/index.md
# - Single Page apps:
# - React: get-started/try-samples/qsg-spa-react.md
# - Javascript: get-started/try-samples/qsg-spa-javascript.md
# - Web apps:
# - OIDC Java EE: get-started/try-samples/qsg-oidc-webapp-java-ee.md
# - SAML Java EE: get-started/try-samples/qsg-saml-webapp-java-ee.md
# - WS-Federation: get-started/try-samples/ws-federation-webapp.md
# - Try for your own app:
# - Try for your own app: get-started/try-your-own-app/index.md
# - Single Page apps:
# - React: get-started/try-your-own-app/react.md
# - Javascript: get-started/try-your-own-app/javascript.md
# - Web apps:
# - OIDC Java EE: get-started/try-your-own-app/java-ee-oidc.md
# - SAML Java EE: get-started/try-your-own-app/java-ee-saml.md
- Connect App:
- React:
- Quickstart: quick-starts/react.md
- Complete Guide: complete-guides/react/introduction.md
- Angular Quickstart: quick-starts/angular.md
- Next.js Quickstart: quick-starts/nextjs.md
- Spring Boot Quickstart: quick-starts/springboot.md
- Try for a sample app:
- Try for a sample app: get-started/try-samples/index.md
- Single Page apps:
- React: get-started/try-samples/qsg-spa-react.md
- JavaScript: get-started/try-samples/qsg-spa-javascript.md
- Web apps:
- OIDC Java EE: get-started/try-samples/qsg-oidc-webapp-java-ee.md
- SAML Java EE: get-started/try-samples/qsg-saml-webapp-java-ee.md
- WS-Federation: get-started/try-samples/ws-federation-webapp.md
- About this release: get-started/about-this-release.md
- Guides:
- Guides: guides/index.md
- Applications:
- Applications: guides/applications/index.md
- Register an SPA: guides/applications/register-single-page-app.md
- Register web app with OIDC: guides/applications/register-oidc-web-app.md
- Register web app with SAML: guides/applications/register-saml-web-app.md
- Register a standard-based app: guides/applications/register-standard-based-app.md
- Register a mobile app: guides/applications/register-mobile-app.md
- Register a machine-to-machine (M2M) app: guides/applications/register-machine-to-machine-app.md
- Register a FAPI-compliant app: guides/applications/register-a-fapi-compliant-app.md
- Authentication:
- Authentication: guides/authentication/index.md
- Add login to apps:
- Add login to apps: guides/authentication/add-login-to-apps.md
- Add login to an SPA: guides/authentication/add-login-to-single-page-app.md
- Add login to a web app: guides/authentication/add-login-to-web-app.md
- Add login to a mobile app: guides/authentication/add-login-to-mobile-app.md
- Add passwordless login:
- Add passwordless login: guides/authentication/passwordless-login/index.md
- Add login with Magic link: guides/authentication/passwordless-login/add-passwordless-login-with-magic-link.md
- Passkeys:
- Add login with Passkey: guides/authentication/passwordless-login/add-passwordless-login-with-passkey.md
- Validate FIDO attestations: guides/authentication/passwordless-login/fido-attestation.md
- Add login with Email OTP: guides/authentication/passwordless-login/add-passwordless-login-with-email-otp.md
- Add login with SMS OTP: guides/authentication/passwordless-login/add-passwordless-login-with-sms-otp.md
- Add multi-factor authentication:
- Add multi-factor authentication: guides/authentication/mfa/index.md
- Add TOTP: guides/authentication/mfa/add-totp-login.md
- Add Email OTP: guides/authentication/mfa/add-emailotp-login.md
- Add Passkey: guides/authentication/mfa/add-passkey-login.md
- Add SMS OTP: guides/authentication/mfa/add-smsotp-login.md
- Add user-preferred MFA: guides/authentication/mfa/user-preferred-mfa-login.md
- Add x509 login : guides/authentication/mfa/add-x509-login.md
- Add federated login:
- Add federated login: guides/authentication/federated-login/index.md
- Add social login:
- Add social login: guides/authentication/social-login/index.md
- Add Facebook login: guides/authentication/social-login/add-facebook-login.md
- Add Google login: guides/authentication/social-login/add-google-login.md
- Add GitHub login: guides/authentication/social-login/add-github-login.md
- Add Microsoft login: guides/authentication/social-login/add-microsoft-login.md
- Add Apple login: guides/authentication/social-login/add-apple-login.md
- Add X login: guides/authentication/social-login/add-x-login.md
- Add standard-based login:
- Add standard-based login: guides/authentication/standard-based-login/index.md
- Add login with OIDC IdP: guides/authentication/standard-based-login/add-oidc-idp-login.md
- Add login with SAML IdP: guides/authentication/standard-based-login/add-saml-idp-login.md
- Add login with WS-Federation: guides/authentication/standard-based-login/add-ws-federation.md
- Add enterprise login:
- Add IWA login: guides/authentication/enterprise-login/add-iwa-login.md
- Add Microsoft 365 login: guides/authentication/enterprise-login/add-microsoft-365-login.md
- Add AD FS login: guides/authentication/enterprise-login/add-ad-fs-login.md
- Configure a custom connector: guides/authentication/configure-custom-connector.md
- Enable user attributes:
- Enable user attributes: guides/authentication/user-attributes/index.md
- Enable attributes for OIDC apps: guides/authentication/user-attributes/enable-attributes-for-oidc-app.md
- Enable attributes for SAML apps: guides/authentication/user-attributes/enable-attributes-for-saml-app.md
- Manage consent for user attributes: guides/authentication/manage-consent-for-attributes.md
- Configure Just-in-Time user provisioning: guides/authentication/jit-user-provisioning.md
- Add conditional authentication:
- Add conditional authentication: guides/authentication/conditional-auth/index.md
- Set up conditional authentication: guides/authentication/conditional-auth/configure-conditional-auth.md
- Add access control:
- Add access control: guides/authentication/conditional-auth/access-control.md
- Age-based access: guides/authentication/conditional-auth/user-age-based-template.md
- Concurrent session-based access: guides/authentication/conditional-auth/concurrent-session-based-template.md
#- Group-based access: guides/authentication/conditional-auth/group-based-template-access-control.md
- Add adaptive MFA:
- Add adaptive MFA: guides/authentication/conditional-auth/adaptive-mfa.md
- MFA based on user role: guides/authentication/conditional-auth/role-based-template.md
- MFA based on auth context: guides/authentication/conditional-auth/acr-based-adaptive-auth.md
- MFA based on user store: guides/authentication/conditional-auth/user-store-based-template.md
- MFA based on login-attempts: guides/authentication/conditional-auth/login-attempt-based-template.md
- MFA based on user group: guides/authentication/conditional-auth/group-based-template.md
#- MFA based on sign-in option: guides/authentication/conditional-auth/sign-in-option-based-template.md
- MFA based on user device: guides/authentication/conditional-auth/new-device-based-template.md
- MFA based on IP address: guides/authentication/conditional-auth/ip-based-template.md
- MFA based on ELK-risk: guides/authentication/conditional-auth/elk-risk-based-template.md
- MFA based on TypingDNA: guides/authentication/conditional-auth/typingdna-based-adaptive-auth.md
- Add passkey progressive enrollment: guides/authentication/conditional-auth/passkey-progressive-enrollment-based-template.md
- Write a custom authentication script: guides/authentication/conditional-auth/write-your-first-script.md
- Configure multi-attribute login: guides/authentication/multi-attribute-login.md
- App-native authentication:
- App-native authentication: guides/authentication/app-native-authentication/index.md
- Add app-native authentication: guides/authentication/app-native-authentication/add-app-native-authentication.md
- Secure app-native authentication flows: guides/authentication/app-native-authentication/secure-app-native-authentication-flows.md
- Handle advanced login scenarios: guides/authentication/app-native-authentication/handle-advanced-login-scenarios.md
- Configure OIDC flows:
- Configure OIDC flows: guides/authentication/oidc/index.md
- Discover OIDC endpoints: guides/authentication/oidc/discover-oidc-configs.md
- Dynamic Client Registration (DCR): guides/authentication/oidc/oauth-dynamic-client-registration.md
- Login flows:
- Authorization code flow: guides/authentication/oidc/implement-auth-code.md
- Authorization code flow and PKCE: guides/authentication/oidc/implement-auth-code-with-pkce.md
- Hybrid flow: guides/authentication/oidc/implement-oidc-hybrid-flow.md
- Device authorization flow: guides/authentication/oidc/implement-device-flow.md
- Pushed Authorization Requests (PAR): guides/authentication/oidc/implement-login-with-par.md
- JWT Secured Authorization Response Mode (JARM) for OAuth 2.0: guides/authentication/oidc/jarm.md
- Grant types:
- JWT Bearer Grant: guides/authentication/configure-jwt-bearer-grant.md
- Client authentication methods:
- Private key JWT: guides/authentication/oidc/private-key-jwt-client-auth.md
- Tokens and validation:
- Validate tokens at a resource server: guides/authentication/oidc/token-validation-resource-server.md
- Validate JWT with JWKS: guides/authentication/oidc/validate-jwt-with-jwks.md
- Validate ID tokens: guides/authentication/oidc/validate-id-tokens.md
- Encrypt ID tokens:
- Encrypt and decrypt ID tokens: guides/authentication/oidc/encrypt-decrypt-id-tokens.md
- ID token encryption reference: guides/authentication/oidc/id-token-encryption-reference.md
- Request user information: guides/authentication/oidc/request-user-info.md
- Revoke tokens: guides/authentication/oidc/revoke-tokens.md
- Configure token exchange: guides/authentication/configure-token-exchange.md
- Logout:
- Front-channel logout: guides/authentication/oidc/add-logout.md
- Back-channel logout: guides/authentication/oidc/add-back-channel-logout.md
- Federated IdP-initiated logout: guides/authentication/oidc/oidc-federated-idp-initiated-logout.md
- Configure SAML flows:
- Configure SAML flows: guides/authentication/saml/index.md
- Discover SAML endpoints and settings: guides/authentication/saml/discover-saml-configs.md
- SAML artifact binding: guides/authentication/saml/saml-artifact-binding.md
- Implement SAML federated IdP-initiated SSO: guides/authentication/saml/saml-federated-idp-initiated-sso.md
- SAML back-channel logout: guides/authentication/saml/saml-back-channel-logout.md
- Authorization:
- Authorization: guides/authorization/index.md
- API authorization:
- Role-based access control: guides/authorization/api-authorization/api-authorization.md
- Attribute-based access control: guides/authorization/api-authorization/attribute-based-access-control.md
- Fine-grained authorization:
- XACML in provisioning flows: guides/authorization/fine-grained-authorization/rule-based-provisioning.md
- User Impersonation: guides/authorization/user-impersonation.md
- Branding:
- Branding: guides/branding/index.md
- Configure UI branding: guides/branding/configure-ui-branding.md
- Customize layouts: guides/branding/add-custom-layouts.md
- Customize email templates: guides/branding/customize-email-templates.md
- Localization support: guides/branding/localization.md
- User management:
- User management: guides/users/index.md
- Manage administrators: guides/users/manage-administrators.md
- Manage users: guides/users/manage-users.md
- Manage groups: guides/users/manage-groups.md
- Manage roles: guides/users/manage-roles.md
- Manage active sessions: guides/users/manage-sessions.md
- Provisioning:
- Inbound provisioning: guides/users/inbound-provisioning/inbound-provisioning.md
- Outbound provisioning:
- Outbound provisioning: guides/users/outbound-provisioning/index.md
- Enable outbound provisioning:
- Organization-level provisioning: guides/users/outbound-provisioning/provisioning-levels/org-level.md
- IdP-level provisioning: guides/users/outbound-provisioning/provisioning-levels/idp-level.md
- Role-based provisioning: guides/users/outbound-provisioning/role-based-provisioning.md
- Configure an outbound connector:
- Google: guides/users/outbound-provisioning/outbound-connectors/google.md
- Salesforce: guides/users/outbound-provisioning/outbound-connectors/salesforce.md
- SCIM2: guides/users/outbound-provisioning/outbound-connectors/scim2.md
- Custom Outbound Connector: guides/users/outbound-provisioning/outbound-connectors/custom-outbound-connectors.md
- Provisioning patterns: guides/users/outbound-provisioning/provisioning-patterns.md
- Sync User Accounts:
- Overview: guides/users/sync-user-accounts/sync-account-overview.md
- Hubspot: guides/users/sync-user-accounts/sync-with-hubspot.md
- Salesforce: guides/users/sync-user-accounts/sync-with-salesforce.md
- Pipedrive CRM: guides/users/sync-user-accounts/sync-with-pipedrive.md
- Sendgrid: guides/users/sync-user-accounts/sync-with-sendgrid.md
- Zoho CRM: guides/users/sync-user-accounts/sync-with-zoho.md
- Manage attributes and mappings:
- Manage attributes and mappings: guides/users/attributes/index.md
- User attributes:
- Manage attributes: guides/users/attributes/user-attributes/manage-attributes.md
- Configure attributes: guides/users/attributes/user-attributes/configure-attributes.md
- OIDC attribute mappings: guides/users/attributes/manage-oidc-attribute-mappings.md
- OIDC scopes: guides/users/attributes/manage-scopes.md
- SCIM2 attribute mappings: guides/users/attributes/manage-scim2-attribute-mappings.md
- Configure email address as the username: guides/users/attributes/enable-email-as-username.md
- Configure unique attributes: guides/users/attributes/configure-unique-attributes.md
- Configure user attribute change verification: guides/users/attributes/user-attribute-change-verification.md
- Manage user stores:
- Manage user stores: guides/users/user-stores/index.md
- Configure the primary user store:
- Configure the primary user store: guides/users/user-stores/primary-user-store/index.md
- Configure a JDBC user store: guides/users/user-stores/primary-user-store/configure-a-jdbc-user-store.md
- Configure a read-only LDAP user store: guides/users/user-stores/primary-user-store/configure-a-read-only-ldap-user-store.md
- Configure a read-write Active Directory user store: guides/users/user-stores/primary-user-store/configure-a-read-write-active-directory-user-store.md
- Configure a read-write LDAP user store: guides/users/user-stores/primary-user-store/configure-a-read-write-ldap-user-store.md
- Configure secondary user stores: guides/users/user-stores/configure-secondary-user-stores.md
- User store properties:
- User store properties: guides/users/user-stores/user-store-properties/index.md
- Properties used in JDBC user store manager: guides/users/user-stores/user-store-properties/properties-jdbc-user-store.md
- Properties used in read-only LDAP user store manager: guides/users/user-stores/user-store-properties/properties-read-only-ldap-user-store.md
- Properties used in read-Write Active Directory user store manager: guides/users/user-stores/user-store-properties/properties-read-write-active-directory-user-store.md
- Properties used in read-write LDAP user store manager: guides/users/user-stores/user-store-properties/properties-read-write-ldap-user-store.md
- Configure user stores for SCIM 2.0: guides/users/user-stores/configure-user-stores-for-scim2.md
- Configure Active Directory user stores for SCIM 2.0: guides/users/user-stores/configure-active-directory-user-stores-for-scim2.md
- Account configurations:
- Account configurations: guides/account-configurations/index.md
- Login security:
- Password validation: guides/account-configurations/login-security/password-validation.md
- Login attempts: guides/account-configurations/login-security/login-attempts.md
- Bot detection: guides/account-configurations/login-security/bot-detection.md
- Session management: guides/account-configurations/login-security/session-management.md
- User Onboarding:
- Self registration: guides/account-configurations/user-onboarding/self-registration.md
- Invite user to set password: guides/account-configurations/user-onboarding/invite-user-to-set-password.md
- Account recovery:
- Password recovery: guides/account-configurations/account-recovery/password-recovery.md
- Username recovery: guides/account-configurations/account-recovery/username-recovery.md
- Admin Initiated Password Reset: guides/account-configurations/account-recovery/admin-initiated-password-reset.md
- User self-service:
- User self-service: guides/user-self-service/index.md
- My Account portal:
- Access the My Account portal: guides/user-self-service/overview.md
- Configure the My Account portal: guides/user-self-service/configure-self-service-portal.md
- Explore self-service features:
- Update profile information: guides/user-self-service/update-profile-info.md
- Change password: guides/user-self-service/change-password.md
- Manage linked social accounts: guides/user-self-service/manage-linked-accounts.md
- Export profile information: guides/user-self-service/export-profile-information.md
- Manage consents: guides/user-self-service/manage-consents.md
- Manage login sessions: guides/user-self-service/manage-login-sessions.md
- Self-register: guides/user-self-service/self-register.md
- Account confirmation for self-register: guides/user-self-service/account-confirmation-for-self-register.md
- Register passkeys: guides/user-self-service/register-passkey.md
- Password recovery: guides/user-self-service/user-password-recovery.md
- Enroll TOTP: guides/user-self-service/enable-totp.md
- Manage backup codes: guides/user-self-service/manage-backup-codes.md
- Discover applications: guides/user-self-service/discover-applications.md
- Build self-service capabilities: guides/user-self-service/build-self-service-capabilities.md
- Organizations:
- Organizations: guides/organization-management/index.md
- Getting started:
- Overview: guides/organization-management/organizations-overview.md
- Set up organizations: guides/organization-management/manage-organizations.md
- Delegate administration:
- Set up administration portal: guides/organization-management/manage-b2b-administration.md
- Onboard administrators:
- Onboard administrators: guides/organization-management/onboard-org-admins/index.md
- Sales-led approach: guides/organization-management/onboard-org-admins/sales-led-approach.md
- Self-service approach: guides/organization-management/onboard-org-admins/self-service-approach.md
- Configure organization applications:
- Share applications: guides/organization-management/share-applications.md
- Authorize API resources:
- Overview: guides/organization-management/api-authorization-overview.md
- Authorize applications to API resources: guides/organization-management/api-authorization-for-b2b.md
- Configure roles to consume authorized APIs: guides/organization-management/organization-roles.md
- Generate tokens for organization applications: guides/organization-management/generate-tokens-for-organization-apps.md
- Manage organization users:
- Onboard users: guides/organization-management/onboard-users.md
- Enable organization-based login:
- Organization discovery: guides/organization-management/organization-discovery/organization-discovery.md
- Email domain-based organization discovery: guides/organization-management/organization-discovery/email-domain-based-organization-discovery.md
- Offboard organizations:
- Disable or delete an organization: guides/organization-management/disable-delete-organizations.md
- Clean up deleted organization resources: guides/organization-management/cleanup-organization-resources.md
- Try a B2B use case: guides/organization-management/try-a-b2b-use-case.md
- Analytics:
- ELK Analytics:
- Elk analytics: guides/analytics/elk-analytics/index.md
- Access analytics: guides/analytics/elk-analytics/accessing-the-analytics-dashboard.md
- Analyze login attempts: guides/analytics/elk-analytics/analyzing-login-attempts.md
- Analyze active sessions: guides/analytics/elk-analytics/analyzing-active-sessions.md
- ELK Alerts: guides/analytics/elk-analytics/elk-alert-types.md
- Web analytic solutions: guides/analytics/web-analytics-solutions.md
- A/B Testing: guides/analytics/ab-testing.md
- Your WSO2 Identity Server:
- Your WSO2 Identity Server: guides/your-is/index.md
- Manage Console access: guides/your-is/manage-console-access.md
- Self-service: guides/your-is/is-self-service.md
- Recover your password: guides/your-is/recover-password.md
- Recover super admin account: guides/your-is/recover-super-admin-account.md
- Multitenancy:
- Multitenancy: guides/multitenancy/index.md
- Manage tenants: guides/multitenancy/manage-tenants.md
- Tenant loading policy: guides/multitenancy/configure-the-tenant-loading-policy.md
- Setup:
- Install:
- Install: deploy/get-started/install.md
- Run: deploy/get-started/run-the-product.md
- Get WSO2 updates: deploy/get-started/get-wso2-updates.md
- Configure:
- User Stores:
- User Stores: deploy/configure/user-stores/index.md
- Add high availability for LDAP: deploy/configure/user-stores/configure-high-availability-ldap.md
- Secure a JDBC user store with PBKDF2 hashing: deploy/configure/user-stores/secure-userstore-using-pbkdf2.md
- Configure the Authorization Manager: deploy/configure/user-stores/configure-authorization-manager.md
- Configure the System Administrator: deploy/configure/user-stores/configure-system-administrator.md
- Databases:
- Databases: deploy/configure/databases/index.md
- Change the Carbon Database:
- Change the Carbon Database: deploy/configure/databases/carbon-database/index.md
- Change to IBM DB2: deploy/configure/databases/carbon-database/change-to-ibm-db2.md
- Change to MariaDB: deploy/configure/databases/carbon-database/change-to-mariadb.md
- Change to MSSQL: deploy/configure/databases/carbon-database/change-to-mssql.md
- Change to MySQL: deploy/configure/databases/carbon-database/change-to-mysql.md
- Change to Oracle: deploy/configure/databases/carbon-database/change-to-oracle.md
- Change to Oracle RAC: deploy/configure/databases/carbon-database/change-to-oracle-rac.md
- Change to PostgreSQL: deploy/configure/databases/carbon-database/change-to-postgresql.md
- Change to remote H2: deploy/configure/databases/carbon-database/change-to-remote-h2.md
- Change the Default Datasource for Consent Management: deploy/configure/databases/carbon-database/change-datasource-consent-management.md
- Change the Default Datasource for Session Data: deploy/configure/databases/carbon-database/change-datasource-session.md
- Change the Default Datasources for the Registry Data: deploy/configure/databases/carbon-database/change-datasource-registry-data.md
- Data Purging: deploy/configure/databases/data-purging.md
- Remove References to Deleted User Identities: deploy/configure/databases/remove-references-to-deleted-user-identities.md
- Session persistence: deploy/configure/session-persistence.md
- Cookie consent banner: deploy/configure/cookie-consent-banner.md
- Cross-Origin Resource Sharing (CORS): deploy/configure/configure-cors.md
- Email sending module : deploy/configure/email-sending-module.md
- Secure:
- Mitigate attacks:
- Cross Site Request Forgery attacks: deploy/mitigate-attacks/mitigate-cross-site-request-forgery-attacks.md
- Authorization Code Interception attacks: deploy/mitigate-attacks/mitigate-authorization-code-interception-attacks.md
- Brute Force attacks: deploy/mitigate-attacks/mitigate-brute-force-attacks.md
- Replay attacks: deploy/mitigate-attacks/timestamp-in-ws-security-to-mitigate-replay-attacks.md
- SameSite attribute support: deploy/samesite-attribute-support.md
- Prevent browser caching: deploy/security/prevent-browser-caching.md
- Work with tokens:
- Add logs for tokens: deploy/add-logs-for-tokens.md
- Token persistence: deploy/token-persistence.md
- Remove unused tokens from the database: deploy/remove-unused-tokens-from-the-database.md
- Enable assertions in access tokens: deploy/enable-assertions-in-access-tokens.md
- Generate JWT tokens without revoking existing tokens: deploy/generate-jwt-tokens-without-revoking-existing-tokens.md
#- Configure rsync for Deployment Synchronization: deploy/configuring-rsync-for-deployment-synchronization.md
- Enable hostname verification: deploy/enable-hostname-verification.md
- Transport Level Security:
- Configure TLS: deploy/security/configure-transport-level-security.md
- Configure TLS termination: deploy/configure-tls-termination.md
- Configure post-quantum TLS: deploy/security/configure-post-quantum-tls.md
- Maintain logins and passwords: deploy/security/maintain-logins-and-passwords.md
- Configure Admin Advisory Banner: deploy/security/configure-admin-advisory-banner.md
- Secure passwords in configuration files:
- Encrypt passwords with Cipher Tool: deploy/security/encrypt-passwords-with-cipher-tool.md
- Resolve encrypted passwords: deploy/security/resolve-encrypted-passwords.md
- Customize secure vault: deploy/security/customize-secure-vault.md
- Set passwords using environment variables/system properties: deploy/security/set-passwords-using-environment-variables-or-system-properties.md
- Enable HTTP Strict Transport Security (HSTS) headers: deploy/security/enable-hsts.md
- Enable Java Security Manager: deploy/security/enable-java-security-manager.md
- Enable Mutual SSL: deploy/security/enable-mutual-ssl.md
- Enable FIPS 140-2-compliant mode: deploy/security/enable-fips-for-is.md
- Security guidelines:
- Security guidelines: deploy/security/security-guidelines/index.md
- Product-level: deploy/security/security-guidelines/product-level-security-guidelines.md
- OS-level: deploy/security/security-guidelines/os-level-security-guidelines.md
- Network-level: deploy/security/security-guidelines/network-level-security-guidelines.md
- Encryption:
- Symmetric encryption:
- Symmetric encryption: deploy/security/symmetric-encryption/index.md
- Asymmetric encryption:
- Asymmetric encryption: deploy/security/asymmetric-encryption/index.md
- Keystores:
- Keystores: deploy/security/keystores/index.md
- Create new keystores: deploy/security/keystores/create-new-keystores.md
- Manage keystores: deploy/security/keystores/configure-keystores.md
- Manage CA-Signed certificates in a keystore: deploy/security/keystores/manage-ca-signed-certificates-in-a-keystore.md
- Deploy:
- Deployment overview:
- Deployment Patterns: deploy/deployment-guide.md
- Deployment Checklist: deploy/deployment-checklist.md
- Product Compatibility: deploy/product-compatibility.md
- Change the Hostname: deploy/change-the-hostname.md
- Promote Configurations Across Environments: deploy/promote-configurations.md
- High Availability (HA) and clustering:
- WSO2 Clusters with Nginx: deploy/front-with-the-nginx-load-balancer.md
- Databases for Clustering: deploy/set-up-separate-databases-for-clustering.md
- Configure Hazelcast: deploy/configure-hazelcast.md
- Containerized deployments:
- Kubernetes: deploy/deploy-is-on-kubernetes.md
- Performance and scaling:
- Performance Tuning Recommendations: deploy/performance/performance-tuning-recommendations.md
- Configure Cache Layers: deploy/performance/configure-cache-layers.md
- Multi-data center deployments (Disaster Recovery):
- Understanding Disaster Recovery: deploy/disaster-recovery/understanding-disaster-recovery.md
- Deployment Patterns: deploy/disaster-recovery/disaster-recovery-deployment-patterns.md
- Additional Reading: deploy/disaster-recovery/additional-reading-on-disaster-recovery.md
- Maintenance and troubleshooting in Production:
- Backup and Recovery Recommendations: deploy/backup-and-recovery-recommendations.md
- Troubleshoot in Production Environments: deploy/monitor/troubleshoot-in-production-environments.md
- Compliance:
- Compliance: deploy/compliance/index.md
- GDPR: deploy/compliance/gdpr.md
- CCPA: deploy/compliance/ccpa.md
- FIPS: deploy/compliance/fips.md
- FAPI: deploy/compliance/fapi.md
- Accessibility compliance: deploy/compliance/accessibility.md
- Analytics:
- Configure ELK analytics: deploy/elk-analytics-installation-guide.md
- Configure SSO with ELK analytics: deploy/elk-analytics-sso-guide.md
- Configure ELK alerts: deploy/elk-configuring-alerts.md
- Configure ELK analytics for adaptive authentication: deploy/elk-analytics-for-adaptive-authentication.md
- Monitor:
- Monitor: deploy/monitor/index.md
- Monitor logs:
- Overview: deploy/monitor/monitor-logs.md
- HTTP access logs: deploy/monitor/http-access-logging.md
- OAuth transaction logs: deploy/monitor/oauth-transaction-logs.md
- Remote log publishing: deploy/monitor/remote-log-publishing.md
- Mask sensitive info:
- Overview: deploy/monitor/mask-sensitive-information-in-logs.md
- Log masking with Filebeat: deploy/monitor/elk-mask-sensitive-information-in-logs.md
- Log masking with Log4j: deploy/monitor/log4j-mask-sensitive-information-in-logs.md
- Log claims in audit logs: deploy/monitor/log-claims-in-audit-logs.md
- Monitor server health: deploy/monitor/monitor-server-health.md
- JMX-Based Monitoring: deploy/monitor/jmx-based-monitoring.md
- Work with product observability: deploy/monitor/work-with-product-observability.md
- Upgrade WSO2 Identity Server: deploy/upgrade/upgrade-wso2-is.md
- SDKs:
- Integrate WSO2 IS into your application: sdks/index.md
- SDK Documentation:
- React SDK:
- Overview: sdks/react/overview.md
- APIs:
- Contexts:
- "<AsgardeoProvider />": sdks/react/contexts/asgardeo-provider.md
- Components:
- Action Components:
- "<SignInButton />": sdks/react/components/action-components/sign-in-button.md
- "<SignOutButton />": sdks/react/components/action-components/sign-out-button.md
- "<SignUpButton />": sdks/react/components/action-components/sign-up-button.md
- Control Components:
- "<SignedIn />": sdks/react/components/control-components/signed-in.md
- "<SignedOut />": sdks/react/components/control-components/signed-out.md
- "<Loading />": sdks/react/components/control-components/loading.md
- User Self-care Components:
- "<UserDropdown />": sdks/react/components/user-selfcare-components/user-dropdown.md
- "<UserProfile />": sdks/react/components/user-selfcare-components/user-profile.md
- "<User />": sdks/react/components/user-selfcare-components/user.md
- Organization Components (B2B):
- "<CreateOrganization />": sdks/react/components/organization-components/create-organization.md
- "<OrganizationProfile />": sdks/react/components/organization-components/organization-profile.md
- "<OrganizationSwitcher />": sdks/react/components/organization-components/organization-switcher.md
- "<OrganizationList />": sdks/react/components/organization-components/organization-list.md
- "<Organization />": sdks/react/components/organization-components/organization.md
- "<OrganizationContext />": sdks/react/components/organization-components/organization-context.md
- hooks:
- useAsgardeo(): sdks/react/hooks/use-asgardeo.md
- Guides:
- Accessing Protected APIs: sdks/react/guides/accessing-protected-apis.md
- Protecting Routes: sdks/react/guides/protecting-routes.md
- Next.js SDK:
- Overview: sdks/nextjs/overview.md
- APIs:
- Contexts:
- "<AsgardeoProvider />": sdks/nextjs/contexts/asgardeo-provider.md
- Middleware:
- asgardeoMiddleware(): sdks/nextjs/middleware/asgardeo-middleware.md
- Components:
- Action Components:
- "<SignInButton />": sdks/nextjs/components/action-components/sign-in-button.md
- "<SignOutButton />": sdks/nextjs/components/action-components/sign-out-button.md
- "<SignUpButton />": sdks/nextjs/components/action-components/sign-up-button.md
- Control Components:
- "<SignedIn />": sdks/nextjs/components/control-components/signed-in.md
- "<SignedOut />": sdks/nextjs/components/control-components/signed-out.md
- "<Loading />": sdks/nextjs/components/control-components/loading.md
- Authentication Components:
- "<SignIn />": sdks/nextjs/components/authentication/sign-in.md
# App-native Sign Up is not available for this version of the Identity Server.
# - "<SignUp />": sdks/nextjs/components/authentication/sign-up.md
- User Self-care Components:
- "<UserDropdown />": sdks/nextjs/components/user-selfcare-components/user-dropdown.md
- "<UserProfile />": sdks/nextjs/components/user-selfcare-components/user-profile.md
- "<User />": sdks/nextjs/components/user-selfcare-components/user.md
- Organization Components (B2B):
- "<CreateOrganization />": sdks/nextjs/components/organization-components/create-organization.md
- "<OrganizationProfile />": sdks/nextjs/components/organization-components/organization-profile.md
- "<OrganizationSwitcher />": sdks/nextjs/components/organization-components/organization-switcher.md
- "<OrganizationList />": sdks/nextjs/components/organization-components/organization-list.md
- "<Organization />": sdks/nextjs/components/organization-components/organization.md
- hooks:
- useAsgardeo(): sdks/nextjs/hooks/use-asgardeo.md
- Guides:
- Accessing Protected APIs: sdks/nextjs/guides/accessing-protected-apis.md
- Protecting Routes: sdks/nextjs/guides/protecting-routes.md
- Connectors:
- Connectors: connectors/index.md
- Sift:
- Overview: connectors/sift/overview.md
- Set up: connectors/sift/set-up.md
- Usage: connectors/sift/usage.md
- Reference: connectors/sift/reference.md
- Onfido:
- Overview: connectors/onfido/overview.md
- Set up: connectors/onfido/set-up.md
- Usage: connectors/onfido/usage.md
- Reference: connectors/onfido/reference.md
- Try it: connectors/onfido/try-it.md
- Email & SMS:
- Configure SMS Provider: guides/notification-channels/configure-sms-provider.md
- Configure Email Provider: deploy/configure/email-sending-module.md
- APIs:
- APIs: apis/index.md
- System APIs:
- Admin advisory management API: apis/admin-advisory-management-rest-api.md
- Tenant management API: apis/tenant-management-rest-api.md
- Management APIs:
- API resource management: apis/api-resource-management-rest-api.md
- Application management:
- Application management API: apis/application-rest-api.md
- Authorized apps:
- Authorized apps API V1: apis/authorized-apps-rest-api.md
- Authorized apps API V2: apis/authorized-apps-v2-rest-api.md
- OAuth 2.0 scope management API: apis/oauth2-scope-management-rest-apis.md
- OpenID Connect scope management API: apis/oidc-scope-management-rest-apis.md
- OIDC Dynamic Client Registration API: apis/dynamic-client-registration-rest-api.md
- Script Library management API: apis/script-library-rest-api.md
- App-native authentication API: apis/app-native-authentication-api.md
- Authentication Data API: apis/use-the-authentication-rest-apis.md
- Authenticators API: apis/authenticators-rest-api.md
- Branding Preferences API: apis/branding-preference-rest-api.md
- Claim management API: apis/claim-management-rest-api.md
- Entitlement management API: apis/entitlement-with-rest-apis.md
- Extension management API: apis/extension-mgt-rest-api.md
- Identity provider API: apis/idp.md
- Idle accounts identification API: apis/idle-accounts-identification-rest-api.md
- IdP session extension API: apis/idp-session-extender-endpoint.md