1 ответ:
Https://github.com/jaxbot/hangouts-bot
Установить
npm install hangouts-botКод
var hangoutsBot = require("hangouts-bot"); var bot = new hangoutsBot("[email protected]", "password"); bot.on('online', function() { console.log('online'); }); bot.on('message', function(from, message) { console.log(from + ">> " + message); });Исходный код: hangouts-bot README
Comments