Created
February 13, 2015 19:46
-
-
Save lmccart/80eb61b40551f51d72ec to your computer and use it in GitHub Desktop.
language chat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
socket.on('user message', function(msg){ | |
console.log('msg: '+msg); | |
var url = 'https://www.googleapis.com/language/translate/v2?key=INSERT-YOUR-KEY&source=en&target=de&q='+encodeURI(msg); | |
restclient.get(url, function(data) { | |
socket.emit('bot message', data.translations[0].translatedText); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment