-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemo.js
41 lines (33 loc) · 1.06 KB
/
emo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const request = require('request');
const fs = require('fs'),
const nconf = require('nconf');
nconf.argv()
.file({file: './config.json'});
class Emo {
createUrl(image) {
return 'http://' + nconf.get('url') + '/' + image;
}
go(image, num, callback) {
let image_url = this.createUrl(image);
const options = {
// url: 'https://westus.api.cognitive.microsoft.com/emotion/v1.0/recognize',
url: 'https://api.projectoxford.ai/emotion/v1.0/recognize',
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Ocp-Apim-Subscription-Key': nconf.get('key');
},
body: JSON.stringify({
url: image_url
})
};
request(options, (error, response, body) => {
if (!error && response.statusCode == 200) {
let object = JSON.parse(body);
callback(num, object);
}
console.log(error, response.body);
});
}
}
module.exports = new Emo();