adobe-ims-servicetoken
Version:
Adobe IMS Service Token lifecycle management
39 lines (28 loc) • 897 B
Markdown
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!
IMS URL for retrieving an access token, default is `https://ims-na1.adobelogin.com/ims/token`
Grant type, default is `authorization_code`; set to `''` if exchanging a `JWT`
IMS Client ID
IMS Client Secret
IMS Client Code
JWT for Access Token exchange
```javascript
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;
}
```