Skip to content

Instantly share code, notes, and snippets.

@velizarn
Last active June 7, 2016 20:01
Show Gist options
  • Save velizarn/dcd4fe918f515f2da625 to your computer and use it in GitHub Desktop.
Save velizarn/dcd4fe918f515f2da625 to your computer and use it in GitHub Desktop.
Yandex.Translate API request for Node.js
var http = require('http'), https = require('https')
var apiKey = process.argv[2];
var _quSelected = process.argv[3] || '';
var _quPrompt = process.argv[4] || '';
var _lang = process.argv[5] || 'en-bg';
var _qu = (_quSelected !== '') ? _quSelected : _quPrompt;
process.on('exit', function (code){
if (code == 1) console.error('Please select or enter a text for translation.');
});
if (_qu === '') {
process.exit(1);
}
console.log(_qu+'\n>>');
var options = {
host: 'translate.yandex.net',
port: 443,
path: '/api/v1.5/tr.json/translate?key='+apiKey+'&lang='+_lang+'&text='+_qu,
method: 'GET'
};
https.request(options, function(res) {
res.setEncoding('utf8');
res.on('data', function (chunk) {
var res = JSON.parse(chunk);
if (res.code == 200) {
console.log(res.text+'');
} else {
console.log('ERR ' + chunk);
}
});
}).end();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment