OpenID Connect Provider
![]() | Allow XWiki to act as an OpenID Connect provider |
Type | JAR |
Category | |
Developed by | |
Active Installs | 121 |
Rating | |
License | GNU Lesser General Public License 2.1 |
Table of contents
Description
Allow XWiki to act as an OpenID Connect provider.
See also OpenID Connect Authenticator.
Release notes can be found on OpenID Connect project page.
Token based access
In order to let a client access any resource just using an OpenID Connect access token you need to setup (in xwiki.cfg configuration file) a special authenticator in XWiki which act as a bridge to authenticate the use if a token is found in the request or fallback to the "real" authenticator.
Endpoints
Provider metadata
path: /oidc/
Authorization
path: /oidc/authorization
Entry point to authenticate a user and authorize the client to access the provider.
Supported methods:
Token
path: /oidc/token
Supported grand types:
- authorization_code: generate an access token from the the authorization code provided by the authorization endpoint
UserInfo
path: /oidc/userinfo
Return informations about the user.
Supported claims:
- core OpenID Connect claims
- xwiki_groups: the names (without the wiki and the XWiki space parts) of the groups of the user
- xwiki_user_<fieldname>: pattern used to access any field of the user document (search in the XWikiUsers object and then in the whole user document)
Customization
Templates
The provider use one template to ask the user for his consent. This template can be overwritten trough the standard template system.
The name of the template is oidc/provider/consent.vm.
Limitations
The provider is not very cluster friendly right now. The workaround is to make sure OpenID Connect related requests always access the same node.
Short URLs
If you use short URL you will have to make sure to add "oidc" to the known entry points (same as "webjars" for example).
Prerequisites & Installation Instructions
We recommend using the Extension Manager to install this extension (Make sure that the text "Installable with the Extension Manager" is displayed at the top right location on this page to know if this extension can be installed with the Extension Manager).
You can also use the manual method which involves dropping the JAR file and all its dependencies into the WEB-INF/lib folder and restarting XWiki.
Dependencies
Dependencies for this extension (org.xwiki.contrib.oidc:oidc-provider 1.18.1):
- org.xwiki.platform:xwiki-platform-oldcore 10.11
- org.xwiki.platform:xwiki-platform-container-servlet 10.11
- org.xwiki.contrib.oidc:oidc-api 1.18.1
- com.nimbusds:oauth2-oidc-sdk 7.3
- org.xwiki.platform:xwiki-platform-instance 10.11