Okta Advanced Server Access (formally ScaleFT) SDK
Maps commands from the sft client
$ npm install @absolunet/oasa-sdk
import oasa from '@absolunet/oasa-sdk';
const ready = oasa.isEnrolled();
if (ready) {
oasa.listServers().forEach(({ hostname }) => {
console.log(hostname);
});
} else {
console.log(`Please run: ${oasa.enrollCommand}`);
}
See the full documentation for an in-depth look.
See the Changelog to see what has changed.
See the Contributing Guidelines for ways to get started.
See the Support Guide for ways to get help.
See the Security Policy for sharing vulnerability reports.
This project has a Code of Conduct. By interacting with this repository, organization, or community you agree to abide by its terms.