faceplusplus
v0.0.2
Published
a client of face++
Downloads
5
Readme
node-faceplusplus
a node client of face++
Usage
initialize
var FacePlusPlus = require('faceplusplus');
var config = {
api_key : '{{api_key}}',
api_secret : '{{api_secret}}'
}
var client = new FacePlusPlus(config);
basic get/post method
client.post('person/create', {person_name : 'Somebody'}, function(err, response, body){
console.log(body);
});
multipart post method
var data = {
img : {
value: fs.readFileSync('./a.jpg'),
meta: {filename:'a.jpg'}
}
};
client.postMulti('detection/detect', data, function(err, response, body){
console.log(body);
});