Demo Application
Last updated
Last updated
The code example can be downloaded by clicking the file link below
This is a code example that fully incorporates the Sybrin Biometrics Web SDK. To use the above example, please ensure the following:
You have an API key as provided by Sybrin
You have the backend API endpoints for authentication and liveness as provided by Sybrin
Then follow these steps:
Download the sybrin-biometrics-websdk-demo-application.zip
file linked above
Extract the zip file contents
Open index.js
In index.js, replace 'your-api-key-here' with the API key provided by Sybrin
In index.js, replace 'your-auth-endpoint-here' with your backend authorization API endpoint
In index.js, replace 'your-liveness-endpoint-here' with your backend liveness API endpoint
Host the folder in any hostable environment, e.g. IIS
Please remember to supply your API key and endpoints to the configuration options in index.js.
For your convenience in formulating custom styling for all components, sybrin.biometrics.css
is also provided as a base example below.
<!DOCTYPE html>
<html class="" lang="en" id="html">
<head>
<title>
Sybrin Biometrics
</title>
<base href="./" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script src="sybrin.biometrics.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" href="index.css" media="screen" />
</head>
<body>
<header>
<div class="branding">
<img class="logo"
src="https://upload.wikimedia.org/wikipedia/commons/3/3e/Sybrin-Logo-Horizontal-Blue.svg" />
</div>
<div class="branding">
<span class="title">Sybrin Web SDK - Biometrics</span>
</div>
<div class="actions">
<button onclick="openPassiveLivenessDetection()">Run Passive Liveness</button>
</div>
</header>
<div id="viewport">
<div class="sybrin-demo-loading"> Please wait. Loading... </div>
</div>
</body>
</html>
var biometrics;
var openPassiveLivenessDetection = async function () {
try {
const response = await biometrics.openPassiveLivenessDetection();
alert(`alive: ${response.alive} confidence: ${response.confidence}`);
} catch (error) {
alert(`Error! ${error}`);
}
}
document.addEventListener('DOMContentLoaded', function (event) {
var options = new Sybrin.Biometrics.Options({
apiKey: 'your-api-key-here',
authorizationEndpoint: 'your-auth-endpoint-here',
passiveLivenessEndpoint: 'your-liveness-endpoint-here',
passiveLivenessHeaders: {
'UseV2': false
}
});
biometrics = new Sybrin.Biometrics.Api();
biometrics.initialize(options);
biometrics.getVersionInfo().then(versionInfo => {
document.getElementsByClassName('title').item(0).innerHTML = 'Sybrin Web SDK - Biometrics (version ' + versionInfo.webSdkVersion + ')';
});
biometrics.checkCompatibility(true);
var passiveComponent = null;
var resultComponent = null;
var initPassive = async () => {
if (resultComponent) {
resultComponent.destroy();
}
var clientInfo = await biometrics.getClientInfo();
passiveComponent = new Sybrin.Biometrics.PassiveComponent({
id: 'viewport',
api: biometrics,
useModal: (!clientInfo.isMobile)
});
passiveComponent.initialize();
passiveComponent.onLivenessResult = (result) => {
initResult(result);
}
passiveComponent.onLivenessError = (error) => {
console.log(`${error}`);
}
passiveComponent.onLivenessCancelled = () => {
console.log('Operation cancelled');
}
};
var initResult = (result) => {
if (passiveComponent) {
passiveComponent.destroy();
}
resultComponent = new Sybrin.Biometrics.ResultComponent({
id: 'viewport',
result: result
});
resultComponent.initialize();
resultComponent.onRetry = resultComponent.onContinue = () => {
initPassive();
};
};
initPassive();
});
button {
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
color: #3498db;
font-size: 16px;
font-weight: normal;
padding: 10px 27px;
text-decoration: none;
cursor: pointer;
background: #ffffff;
border: 1px solid;
}
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: #2d2d46;
margin: 0;
padding: 0;
}
header {
background-color: white;
margin-bottom: 50px;
padding: 15px 60px;
overflow: auto;
}
header .branding {
float: left;
}
header .actions {
float: right;
}
header img {
height: 33px;
padding-top: 3px;
}
header span.title {
display: inline-block;
line-height: 1;
border-radius: 50rem !important;
margin-left: 0.5rem !important;
padding: 0.5rem !important;
padding-right: 1rem !important;
padding-left: 1rem !important;
background: rgba(0, 0, 30, 0.05) !important;
color: rgba(0, 0, 30, 0.824) !important;
margin-top: 4px;
}
header button {
font: 300 1em/2em Roboto, sans-serif;
padding: 0.25rem 1rem;
border-radius: 50rem !important;
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
border: none;
color: #fff !important;
background: linear-gradient(160deg, #00fafa 0, #3264fa 100%);
box-shadow: 0 15px 30px -10px #3264fa !important;
cursor: pointer;
}
@media screen and (max-width: 700px) {
header {
display: none;
}
}
.sybrin-demo-loading {
color: white;
padding: 20px;
}
.sybrin-biometrics-passive {
padding-top: 10px;
padding-bottom: 10px;
border: 2px solid #e4e5e8;
border-radius: 5px;
-webkit-box-shadow: 0 0 5px 2px rgb(0 0 0 / 50%);
box-shadow: 0 0 5px 2px rgb(0 0 0 / 50%);
width: calc(100% - 4px);
max-width: 400px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
margin: auto;
background-color: white;
}
.sybrin-biometrics-passive-modal-commands button,
.sybrin-biometrics-passive button {
border: none;
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
color: #ffffff;
font-size: 20px;
font-weight: normal;
background: #3498db;
padding: 10px 35px;
text-decoration: none;
cursor: pointer;
}
.sybrin-biometrics-passive-modal-commands button:hover,
.sybrin-biometrics-passive button:hover {
background: #3cb0fd;
text-decoration: none;
}
.sybrin-biometrics-passive-image {
height: 300px;
}
.sybrin-biometrics-passive-image svg {
height: 300px;
}
.sybrin-biometrics-passive-video {
position: relative;
width: 100%;
}
.sybrin-biometrics-passive-instruction {
padding: 15px 10px;
margin: 10px 20px;
}
.sybrin-biometrics-passive-instruction-icon {
float: left;
height: 25px;
width: 30px;
position: relative;
top: 50%;
transform: translateY(-50%);
}
.sybrin-biometrics-passive-instruction-icon svg {
height: 100%;
}
.sybrin-biometrics-passive-instruction-text {
float: right;
text-align: left;
width: 80%;
position: relative;
top: 50%;
transform: translateY(-50%);
}
.sybrin-biometrics-passive .sybrin-biometrics-card {
height: 28px;
padding: 15px 10px;
border: 1px solid #0078c8;
border-radius: 5px;
margin: 10px 20px;
cursor: pointer;
}
.sybrin-biometrics-passive .sybrin-biometrics-card:hover {
box-shadow: 0 0 10px rgba(50, 50, 55, 0.6);
}
.sybrin-biometrics-passive .sybrin-biometrics-card-text p {
margin: 5px;
}
.sybrin-biometrics-modal-backdrop,
.sybrin-biometrics-passive-modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1000;
}
.sybrin-biometrics-modal,
.sybrin-biometrics-passive-modal {
width: calc(100% - 32px);
max-width: calc((100vh / 3 * 4) - 70px);
margin: auto;
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: center;
}
.sybrin-biometrics-modal {
width: 100%;
max-width: 450px;
}
@media (orientation: portrait) {
.sybrin-biometrics-passive-modal-narrow {
width: calc(100% - 325px);
}
}
.sybrin-biometrics-modal-message,
.sybrin-biometrics-passive-modal-video {
background-color: white;
border-top: 2px solid #e4e5e8;
border-left: 2px solid #e4e5e8;
border-right: 2px solid #e4e5e8;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
width: 100%;
}
.sybrin-biometrics-modal-message {
padding: 20px 0;
}
.sybrin-biometrics-modal-commands,
.sybrin-biometrics-passive-modal-commands {
background-color: white;
border-bottom: 2px solid #e4e5e8;
border-left: 2px solid #e4e5e8;
border-right: 2px solid #e4e5e8;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
padding: 10px 0;
width: 100%;
}
.sybrin-biometrics-modal-commands {
padding: 0 0 20px 0;
}
.sybrin-biometrics-modal-commands button {
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
color: #3498db;
font-size: 16px;
font-weight: normal;
padding: 10px 27px;
text-decoration: none;
cursor: pointer;
background: #ffffff;
border: 1px solid;
}
.sybrin-biometrics-result {
padding-top: 10px;
padding-bottom: 10px;
border: 2px solid #e4e5e8;
border-radius: 5px;
-webkit-box-shadow: 0 0 5px 2px rgb(0 0 0 / 50%);
box-shadow: 0 0 5px 2px rgb(0 0 0 / 50%);
width: calc(100% - 4px);
max-width: 400px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
margin: auto;
background-color: white;
}
.sybrin-biometrics-result button {
border: none;
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
color: #ffffff;
font-size: 20px;
font-weight: normal;
background: #3498db;
padding: 10px 35px;
text-decoration: none;
cursor: pointer;
}
.sybrin-biometrics-result button:hover {
background: #3cb0fd;
text-decoration: none;
}
.sybrin-biometrics-result-image {
padding: 30px;
height: 100px;
}
.sybrin-biometrics-result-image svg {
height: 100%;
width: 100%;
}
.sybrin-biometrics-result-image svg path {
fill: none;
stroke: #ffffff;
stroke-width: 2;
stroke-miterlimit: 10;
}
.sybrin-biometrics-result-image-success svg path {
stroke: #00aa6e;
fill: #00aa6e;
}
.sybrin-biometrics-result-image-fail svg path {
stroke: #a8262b;
fill: #a8262b;
}
.sybrin-biometrics-loader-wrapper {
background-color: white;
z-index: 6;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.sybrin-biometrics-loader {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
top: 50%;
transform: translateY(-50%);
}
.sybrin-biometrics-loader div {
position: absolute;
width: 6px;
height: 6px;
background: #0078c8;
border-radius: 50%;
animation: sybrin-biometrics-loader 1.2s linear infinite;
}
.sybrin-biometrics-loader div:nth-child(1) {
animation-delay: 0s;
top: 37px;
left: 66px;
}
.sybrin-biometrics-loader div:nth-child(2) {
animation-delay: -0.1s;
top: 22px;
left: 62px;
}
.sybrin-biometrics-loader div:nth-child(3) {
animation-delay: -0.2s;
top: 11px;
left: 52px;
}
.sybrin-biometrics-loader div:nth-child(4) {
animation-delay: -0.3s;
top: 7px;
left: 37px;
}
.sybrin-biometrics-loader div:nth-child(5) {
animation-delay: -0.4s;
top: 11px;
left: 22px;
}
.sybrin-biometrics-loader div:nth-child(6) {
animation-delay: -0.5s;
top: 22px;
left: 11px;
}
.sybrin-biometrics-loader div:nth-child(7) {
animation-delay: -0.6s;
top: 37px;
left: 7px;
}
.sybrin-biometrics-loader div:nth-child(8) {
animation-delay: -0.7s;
top: 52px;
left: 11px;
}
.sybrin-biometrics-loader div:nth-child(9) {
animation-delay: -0.8s;
top: 62px;
left: 22px;
}
.sybrin-biometrics-loader div:nth-child(10) {
animation-delay: -0.9s;
top: 66px;
left: 37px;
}
.sybrin-biometrics-loader div:nth-child(11) {
animation-delay: -1s;
top: 62px;
left: 52px;
}
.sybrin-biometrics-loader div:nth-child(12) {
animation-delay: -1.1s;
top: 52px;
left: 62px;
}
@keyframes sybrin-biometrics-loader {
0%,
20%,
80%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
}
.sybrin-biometrics-passive-prompt-container {
z-index: 6;
position: absolute;
top: 0;
left: 0;
right: 0;
padding-top: 5px;
}
.sybrin-biometrics-passive-prompt {
margin: auto;
color: white;
}
.sybrin-biometrics-fullscreen-video-container {
position: fixed;
width: 100vw;
height: 100vh;
z-index: 3;
top: 0;
left: 0;
background-color: black;
}
.sybrin-biometrics-video-mirrored {
width: 100%;
height: 100%;
z-index: 4;
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
}
.sybrin-biometrics-video {
width: 100%;
height: 100%;
z-index: 4;
}