Socket
Socket
Sign inDemoInstall

@maccuaa/intellitrust-issuance-sdk

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@maccuaa/intellitrust-issuance-sdk

JavaScript client for @maccuaa/intellitrust-issuance-sdk


Version published
Maintainers
0
Created
Source

@maccuaa/intellitrust-issuance-sdk@5.36.0

This is a JavaScript client for the Entrust Identity as a Service Issuance API. This module can be used in the following environments:

  • Node.js
  • Webpack
  • Browserify

It can be used in both TypeScript and JavaScript projects.

Installation

npm install @maccuaa/intellitrust-issuance-sdk --save

Usage

NOTE: Make sure to replace the configuration values in the examples with the values from your Identity as a Service account!

import * as IssuanceSDK from "@maccuaa/intellitrust-issuance-sdk";

const basePath = "https://entrust.us.trustedauth.com";

// Issuance API application credentials
const credentials: IssuanceSDK.IssuanceApiAuthentication = {
  applicationId: "792130ae-fe2a-4a83-beb6-afc4306ac9fe",
  sharedSecret: "b_Zv2IRQZe90ENkK59pzFQYrq1aZUJExvv4s7MJM53Q"
};

// Create a new instance of the API.
const sdk = new IssuanceSDK.API({
  basePath
});

// Authenticate to the Issuance API application.
const authResponse = await sdk.authenticateIssuanceApiUsingPOST(credentials);

// Get the authToken from the response
const { authToken } = authResponse.data;

// Set the authToken so it can be used in all API calls
sdk.setApiKey(authToken);

// Exampe: List all Authentication API applications
const listResponse = await sdk.listAuthApiApplicationsUsingGET();

// Print the response
console.log(listResponse.data);

Help

For more information on how to use the APIs please refer to the Identity as a Service Issuance API documentation.

Keywords

FAQs

Package last updated on 13 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc