tools for fritzbox http interface via nodejs
npm install fritzboxtools
this is a module for nodejs.
It can get Smart Home Data from your fritz!Box, turn on and off Fritz!DECT 200 Outlets.
currently developed and tested on mac osx maverics.
currently tested as metrics collecting application running on Arch Linux ARM (on RaspberryPi)
depends on following node modules:
- http (included in nodejs)
- https (included in nodejs)
- util (included in nodejs)
- xml2js
- MD5
- yargs (only for examples and restproxy)
- express (only for restproxy)
These tools are currently in progress of development but can be used for developing apps on top of it.
fritzboxtools.js represents a working reimplementation of the session-id based example of
the http interface action for avm-products.
Since Version 0.3.3 fritboxtools also supports AHA-HTTP-Interface methods.
STATE: USABLE, GENERIC AND FUNCTIONAL ALMOST COMPLETE (ALPHA).
These commands require only "HomeAuto" privileges for the user (BoxAdmin has all rights).
Simple request to print JSONdata from all connected outlets every 3 seconds to stdout.
var fritzboxtools = require('fritzboxtools');
var fbox = new fritzboxtools("fritz.box");
fbox.login("username", "password", function(){
fbox.getData(function(d){
console.log(d);
}, 3000);
});
Request to print comma separated AINs from all connected outlets to stdout.
fbox.login("username", "password", function(){
fbox.homeautoSwitch("", "getswitchlist", function(d){
console.log(d);
});
});