echolocate
Version:
Get an Echo device's physical location and timezone using the Alexa API and Geo-location.
21 lines (17 loc) • 445 B
JavaScript
const minimist = require('minimist');
const echolocate = require('../dist/bundle.js');
const args = minimist(process.argv.slice(2), {
alias: {
'device-id': 'd',
'consent-token': 'c'
}
});
echolocate(args['device-id'], {consentToken: args['consent-token']})
.then((device) => {
console.log(JSON.stringify(device));
})
.catch((e) => {
console.error(e && e.message || e);
process.exit(1);
});