0.0.16 • Published 9 months ago

@adaas/a-os v0.0.16

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

a-os SDK

LTSLatestnpm
v1.0.0v1.0.1@adaas/a-os

Table of Contents

Quick Start

Step 1: Install SDK

cd /your/project/location
adf
npm i @adaas/a-os

Step 2: Provide Credentials

You can pass credentials through ENV variable or via code:

BASH
# Mandatory
ADAAS_API_CREDENTIALS_CLIENT_ID=ADAAS--client::769e6cb6597b...YOUR_ID...911f3060c161
ADAAS_API_CREDENTIALS_CLIENT_SECRET=ADAAS--secret::5ca6204b...YOUR_SECRET...e90c00a263f4db
In APPLICATION
const ADAAS_API_CREDENTIALS_CLIENT_ID = process.env.ADAAS_API_CREDENTIALS_CLIENT_ID!;
const ADAAS_API_CREDENTIALS_CLIENT_SECRET = process.env.ADAAS_API_CREDENTIALS_CLIENT_SECRET!
ADAAS_A_AUTH_Context.setCredentials(
    ADAAS_API_CREDENTIALS_CLIENT_ID,
    ADAAS_API_CREDENTIALS_CLIENT_SECRET

await ADAAS_A_AUTH_Context.authenticate();

Step 4: Start Using

By installing this app into your application then you will be able to access the ADAAS API or ADAAS products API via SSO

Environment Variables

Variable NameRequiredDescription
ADAAS_API_CREDENTIALS_CLIENT_IDYESYour ADAAS API Credentials Key. Not mandatory in case when it's provided through the code
ADAAS_API_CREDENTIALS_CLIENT_SECRETYESYour ADAAS Api Credentials Secret Not mandatory in case when it's provided through the code
ADAAS_A_AUTH_CONFIG_SDK_VALIDATIONNOAllows to ignore configurations validation
ADAAS_A_AUTH_CONFIG_VERBOSENOAllows to turn off extra library logs
ADAAS_A_AUTH_CONFIG_IGNORE_ERRORSNOAllows to ignore error

Links