1.0.1 • Published 4 months ago

@integrationos/embed-node v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

embed-node

Secure token generation for IntegrationOS Embed using Node.js .

Install

With npm:

npm i @integrationos/embed-node

With yarn:

yarn add @integrationos/embed-node

Creating a token endpoint

You'll want to create an internal endpoint that's used to generate secure tokens for your frontend. You can do so by adding code that looks like the below snippet.

const { createClient, createEmbedToken } = require("@integrationos/embed-node");

app.post("/create-embed-token", async (request, response) => {
  const client = createClient(INTEGRATIONOS_API_KEY);

  const token = await createEmbedToken(client, {
    group: "meaningful-id", // a meaningful identifier (i.e., organizationId)
    label: "Friendly Label" // a human-friendly label (i.e., organizationName)
  });

  response.send(token);
});

You'll want to switch out the API Key for your own, which will later tell your frontend which integrations you'd like to make available to your users.

You'll also want to populate the Group and Label fields depending on how you want to organize and query your users' connected accounts. The Group is especially important as it's used to generate the unique Connection Key for the user once they successfully connect an account.

Full Documentation

Please refer to the official IntegrationOS Embed docs for a more holistic understanding of IntegrationOS Embed.