Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

adobe-ims-servicetoken

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adobe-ims-servicetoken

Adobe IMS Service Token lifecycle management

latest
Source
npmnpm
Version
3.0.11
Version published
Weekly downloads
2
-81.82%
Maintainers
1
Weekly downloads
 
Created
Source

adobe-ims-servicetoken

Load into your node.js application to easily manage Adobe IMS service tokens. Multiple clients and/or grant types are supported with 1.1.0!

Configuration

url

IMS URL for retrieving an access token, default is https://ims-na1.adobelogin.com/ims/token

grant_type (optional)

Grant type, default is authorization_code; set to '' if exchanging a JWT

client_id

IMS Client ID

client_secret

IMS Client Secret

code (required if jwt_token is not supplied)

IMS Client Code

jwt_token (required if code is not supplied)

JWT for Access Token exchange

Example

import {token as ims} from 'adobe-ims-servicetoken';

export async function token () {
  let result;
  
  try {
    result = await ims({client_id: '', client_secret: '', code: ''});
  } catch (e) {
    console.error(e.message);
  }

  return result;
}

Keywords

Adobe

FAQs

Package last updated on 22 Jul 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