1.0.7 • Published 4 months ago

ac-api-connector v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

ac-api-connector

Use this class to connect to AdmiralCloud APIs

Node.js CI

BREAKING CHANGES Version 1

Starting with version 1 we use ac-signature with signature version 5 which does not require controller and action but use the path instead.

Note: With signature version 5, the identifier is also part of the signed payload, which makes the request even more secure.

Usage

Init a class instance with your app's clientId and accessKey and accessSecret from your app or from a user.

const accon = require('ac-api-connector')

const apiConfig = {
  baseURL: 'url-of-the-api' // defaults to https://api.admiralcloud.com
  clientId: 'abc',
  accessKey: 'my-access-key',
  accessSecret: 'my-access-secret'
}
const apiConnector = new accon(apiConfig)

You can now use this connector for calls against the API.

let response = await apiConnector.request({ 
  path: '/v5/me',
  identifier: 'my-identifier',
  payload: {
    prop1: 'abc,
    prop2: 123,
    prop3: {
      subproc1: 'xyz'
    }
  }
})

Links

Run tests

yarn run test

License

MIT License Copyright © 2009-present, AdmiralCloud AG, Mark Poepping

1.0.7

4 months ago

1.0.6

5 months ago

1.0.5

6 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

11 months ago

1.0.1

12 months ago

1.0.0

12 months ago

0.1.9

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago