WSO2 and SSO authentication server for user application

We are currently evaluating WSO2 Identity Server, and I have a few questions about this:

  • Can an Identity server be used as a single sign-on provider to deploy custom applications (like CAS)? Is there a client API for automatically accessing the server for ticket validation?
  • Is there a way to configure the login page for the Identity Server or replace it with my own (and how)?
  • Is Identity Server the ability to log in with digital certificates?
+6
source share
2 answers
  • There is a good explanation here for your first question.
  • I believe that you can download the Identity Server source, change the login page, and then build. WSO2 Identity Server Documentation
+4
source

3. You can write your own authenticator according to your requirement and connect it by dropping it in the repository / components / spreads and edit the /conf/security/authenticators.xml repository with the priority that you will give for this authentication mechanism.

You can link to an existing authentication code to get an idea at http://svn.wso2.org/repos/wso2/carbon/platform/tags/turing-chunk01/components/authenticators/

+2
source

Source: https://habr.com/ru/post/920685/


All Articles