Node.js interface for Telldus Live API and Telldus Local API. Since their APIs are similar, I added support for both. All API methods are promise based. Both LiveApi and LocalApi inherit from the same class Api which has the same methods. However not all methods are implemented or make sense on LocalApi.
npm install telldus-api
- You will need a Telldus Live account with configured devices and and OAuth tokens.
- Log in to your Live account, go to http://api.telldus.com/ and
Generate a private token for my user only
.
const { LiveApi } = require('telldus-api');
const api = new LiveApi({
key: '...', // publicKey
secret: '...', // privateKey
tokenKey: '...', // token
tokenSecret: '...', // tokenSecret
});
const devices = await api.listDevices();
console.log(devices);
TellStick ZNet Lite can be controlled via a similar API directly via HTTP. For more info, see this link.
- Find the IP address of your TellStick device
- Install telldus-local-auth:
npm i -g telldus-local-auth
- Run in a terminal
telldus-local-auth <IP OF YOUR DEVICE> appname
and follow instructions.appname
can be set to whatever you want. - Note the returned token.
const { LocalApi } = require('telldus-api');
const api = new LocalApi({
host: '...', // Host name or IP address of your device
accessToken: '...', // The access token you got from telldus-local-auth
});
const devices = await api.listDevices();
console.log(devices);
The accessToken will be auto refreshed as long as there are API calls.
See class Api
in index.js