0.0.20 • Published 6 years ago

alexa-cookie v0.0.20

Weekly downloads
8
License
MIT
Repository
github
Last release
6 years ago

alexa-cookie

Library to generate a cookie including a csrf for alexa remote

License

####Example:

let alexaCookie = require('alexa-cookie');

alexaCookie('amazon-email', 'password', function (err, result) {
    console.log('cookie: ' + result.cookie);
    console.log('csrf: '   + result.csrf);
});

####Info: Partly based on Amazon Alexa Remote Control (PLAIN shell) Thank you for that work.