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

tipi-sciener

Package Overview
Dependencies
Maintainers
4
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tipi-sciener

Node.js library to connect to sciener REST API

  • 1.1.3
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
4
Weekly downloads
 
Created
Source

Tipi Sciener SDK

This is a Node.js library which implements sciener REST requests

How to use

Install

npm install --save tipi-sciener

Example

const { Sciener, Enums: { PasscodeType } } = require('tipi-sciener')

const sciener = new Sciener({
  clientId: 'your client id',
  clientSecret: 'your client secret',
  redirectUri: 'your redirect uri'
})

sciener.getAccessToken({
  username: 'your username',
  password: 'your password'
})
.then(response => {
  return sciener.getPasscode({
    accessToken: response.access_token,
    lockId: 29382,
    keyboardPwdType: PasscodeType.WeekendCyclic
  })
})
.then(response => {
  console.log(response)
})
.catch(error => {
  console.log(error)
})

Keywords

FAQs

Package last updated on 26 Nov 2020

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