How to use
let appId = 'your-app-id';
let appKey = 'your-app-key';
const Vtion = new App(appId, appKey);
let img ='your-base-64-image';
Vtion.getClient().search(img)
.then((response) => {
console.log(response)
})
.catch((err) => {
console.log(err);
});
How to use
let appId = 'your-app-id';
let appKey = 'your-app-key';
const Vtion = new App(appId, appKey);
let img ='your-base-64-image';
Vtion.getClient().search(img)
.then((response) => {
console.log(response)
})
.catch((err) => {
console.log(err);
});