Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ac-api-connector

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ac-api-connector

Use this class to connect to AdmiralCloud APIs

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
decreased by-5%
Maintainers
0
Weekly downloads
 
Created
Source

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'
    }
  }
})
  • Website

Run tests

yarn run test

License

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

FAQs

Package last updated on 02 Sep 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc