Quick Start
Creating the Application
Install the library
npm install @vulos/identity-node-sdk --savenpm install @vulos/identity-browser-sdk --save <script src="https://cdn.vulos.io/latest/identity.min.js"></script>Setting up the OpenID flow
import { Application, User } from "@vulos/identity-base"
const application = new Application({
id: "<paste your_client id here>",
// if you made a browser application remove this property
secret: "<paste your client secret here>",
scope: "openid",
redirectUrls: ["<your website's callback URL>"]
})const { Application, User } = VulosIdentity.Base
const application = new Application({
id: "<paste your_client id here>",
// if you made a browser application remove this property
secret: "<paste your client secret here>",
scope: "openid",
redirectUrls: ["<your website's callback URL>"]
})Further reading
OrganizationsScopes and ClaimsIdentity JavaScript SDKLast updated