This NodeJS app, allows you to interact with a jitterbit project and API's configured to utilise the Microsoft Azure Face Detect API.
You will need an active licence account with jitterbit and need to have established 4 x API routes for all demos to work:
- POST /facedetect - Returns face detection data based on supplied image url
- POST /faceaddnewface - Returns results of adding a new face to the Microsoft Azure face detection API based on supplied personname and image url
- POST /faceverify - Returns results of face verification based on person name and image url
- GET /getsalesforceusers - Returns a list of Salesforce users
Firstly, ensure you have nodejs and npm installed.
Once downloaded, open the project folder and run:
- Install project dependencies:
npm install
-
Configure your jitterbit API urls in app.js, create.ejs, detect.js, verify.js
-
To run the project:
npm run watch
Browse to the output url http://localhost:3000 to interact with the demo.
Pull requests are welcome.