Git Product home page Git Product logo

keycloakloginactionsendpoints's Introduction

KeycloakLoginActionsEndpoints

Keycloak extension that allows to register users in Keycloak for specified Realm and existing client via REST.

By default, we can register user in Keycloak only via Keycloak UI. Default registration endpoint requires browser data, some cookies and so on. It's not possible to use in microservice environment.

In order to solve this problem, the project extends the Keycloak LoginActions endpoints and with this implementation we can hide usage of Keycloak. For example, we have some API for registering users. It requires two parameters - email and password. Backend service receive the request, calls Keycloak to register a user and Keycloak returns Http status 201 that user was registered successfully. Then user can login, backend service can call Keycloak endpoint to get an authorization token.

The project contains docker-compose and Docker files in order to test it quickly.

In order to start application please execute:

mvn clean package && docker-compose up

Once server is started, you can register a client with next endpoint:

curl --location --request POST 'http://localhost:8180/auth/realms/{REALM}/loginActions/userRegistration?clientId={CLIENT_NAME}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode '[email protected]' \ --data-urlencode 'password=password' \ --data-urlencode 'password-confirm=password'

NOTE: In order to register a user, registration should be allowed on specified realm.

Feel free to ask any questions or some additional features.

keycloakloginactionsendpoints's People

Contributors

dependabot[bot] avatar sergiyrezvan avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.