Wiki source code of Authentication
Version 10.1 by Vincent Massol on 2020/10/01
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
10.1 | 1 | XWiki Standard embeds several authentication mechanisms by default: |
![]() |
1.1 | 2 | |
![]() |
3.1 | 3 | * Form authentication |
4 | * Basic authentication | ||
![]() |
1.1 | 5 | |
![]() |
3.1 | 6 | In addition XWiki allows you to create your own authentication extension in order to integrate with any custom mechanism you might be using already (SSO, etc). |
![]() |
1.1 | 7 | |
![]() |
10.1 | 8 | Note that additional authenticators are available as extensions on [[extensions.xwiki.org>>extensions:Main.WebHome]]: |
![]() |
7.1 | 9 | |
![]() |
10.1 | 10 | {{velocity}} |
11 | #set ($xwql = "from doc.object(ExtensionCode.ExtensionClass) as extension, doc.object(EXOExtensionCode.ExtensionClass) as exoextension where extension.category = 'authenticator'") | ||
12 | #set ($extensions = $services.query.xwql($xwql).setWiki('extensions').execute()) | ||
13 | #foreach ($extension in $extensions) | ||
14 | * [[extensions:$extension]] | ||
15 | #end | ||
16 | {{/velocity}} | ||
![]() |
4.1 | 17 | |
![]() |
3.1 | 18 | For more details on how to configure authentication check the [[Authentication page of the Administration Guide>>platform:AdminGuide.Authentication]]. |