Keycloak - OIDC VueJS
This repository contains a VueJS example application that demonstrates the implicit flow for OpenID Connect.
Instructions
Clone the Repository
RUN
npm install
and wait for the completion of installation of allnode_modules
.Once
node_modules
are installed and RUNnpm run serve
to start execution ofvue-cli-service serve
.You will receive a localhost URL, open that particular URL in your browser to view your initial screen
Configure the OIDC details in the
src/model/Config.js
path.Make sure you replace
keycloak-tenant-id
with your TenantID andkeycloak-client-id
with your ClientID.Change
{hostname}
to align your keycloak domain.
Example
App running at:
- Local: http://localhost:8080/
- Network: http://<IP>:8080/
Note that the development build is not optimized.
To create a production build, run npm run build.
Approach to work with the implicit flow
Click the button for "login".
You will be redirected to the user authentication screen of "Keycloak".
Complete all of the authentication steps.
Depending on the response type you configured, you will receive a token.
What can I use these for
OpenID Connect is a perfect way to incorporate user authentication to your application, where you are relying on another party to handle user identity.
In this situation, Keycloak handles the identity of the users, allowing it faster to get up and running.
Single Sign On (SSO)
By integrating OpenID Connect via Keycloak, you are building a session that can be used to single sign-on from your custom app to other applications that your users can access via the Keycloak portal.
If you have any queries/you find any problems, please don't hesitate to raise an issue.
Follow us on LinkedIn | Discuss on Slack | Support us with Patreon | Sign-up for a free membership.
This wiki is owned by Open Measure, a non-profit association. The original content we publish is licensed under a Creative Commons Attribution 4.0 International License.