Socket
Book a DemoInstallSign in
Socket

wink-api

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wink-api

The Wink API connects Wink devices to users, apps, each other, and the wider web. Targets the v2 API

latest
Source
npmnpm
Version
0.6.8
Version published
Maintainers
1
Created
Source

Wink API

Build Status NPM Downloads Test Coverage

A typescript/javascript binding for Wink's v2 API.

Installation

npm install wink-api

for typescript users, this can install the module's typings globally:

typings install file:node_modules/wink-api/@types/wink-api.d.ts --save --global

Setup

Add an app at https://developer.wink.com and wait under a day for acceptance.
You'll need to get the client ID and secret.

Your app should get the access token via OAuth. More details are at http://docs.winkapiv2.apiary.io/#reference/oauth

Examples

Get the devices for a user:

import {GetDevices} from "wink-api";

GetDevices.execute({
    host: 'https://api.wink.com',
    access_token: access_token
}).then((devicesResponse: WinkAPI.IUserDevicesResponse) => {
    // do something
}).catch((err: WinkAPI.IRequestError) => {
    // error handling 
});

Available Requests

The following requests are supported via the wink-api module (each with "execute" as the method that queries):

  • ActivateScene
  • CreateGroup
  • CreateRobot
  • CreateScene
  • CreateUser
  • DeleteGroup
  • DeleteRobot
  • DeleteScene
  • GetDevice
  • GetDeviceUsers
  • GetDevices
  • GetGroup
  • GetGroups
  • GetRobot
  • GetRobots
  • GetScene
  • GetScenes
  • SetDesiredState
  • ShareDevice
  • UnshareDevice
  • UpdateGroup
  • UpdateGroupState
  • UpdateRobot
  • UpdateScene
  • UpdateUser

Interesting use-cases

Turning off a group of lights:

import {UpdateGroupState} from "wink-api";

UpdateGroupState.execute({
    host: 'https://api.wink.com',
    access_token: '<access_token>',
    group_id: '<group id>'
}, {
    powered: false
}).then((groupResponse: WinkAPI.IUserGroupResponse) => {
    // do something
}).catch((err: WinkAPI.IRequestError) => {
      // error handling 
});

FAQs

Package last updated on 20 Sep 2017

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.