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 Identity 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 data extraction as provided by Sybrin
Then follow these steps:
Download the sybrin-identity-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-data-extraction-endpoint-here' with your backend data extraction 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.identity.css
is also provided as a base example below.
<!DOCTYPE html>
<html class="" lang="en" id="html">
<head>
<title>
Sybrin Identity
</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.identity.all.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 - Identity</span>
</div>
<div class="actions">
<button onclick="openScanPassport()">Scan Passport</button>
<button onclick="uploadPassport()">Upload Passport</button>
</div>
</header>
<div id="viewport">
<div class="sybrin-demo-loading"> Please wait. Loading... </div>
</div>
</body>
</html>
var identity;
var openScanPassport = async function () {
var result = await identity.openScanDocument({
countryCode: 'ZAF',
documentTypeName: 'passport'
});
console.log('Success: ', result.success);
for (const property in result.data) {
console.log('Value of ' + property + ' is ' + result.data[property]);
}
}
var uploadPassport = async function () {
var result = await identity.uploadDocument({
countryCode: 'ZAF',
documentTypeName: 'passport'
});
console.log('Success: ', result.success);
for (const property in result.data) {
console.log('Value of ' + property + ' is ' + result.data[property]);
}
}
document.addEventListener('DOMContentLoaded', function (event) {
var options = new Sybrin.Identity.Options({
apiKey: 'your-api-key-here',
authorizationEndpoint: 'your-auth-endpoint-here',
dataExtractionEndpoint: 'your-data-extraction-endpoint-here',
});
identity = new Sybrin.Identity.Api();
identity.initialize(options);
identity.getVersionInfo().then(versionInfo => {
document.getElementsByClassName('title').item(0).innerHTML = 'Sybrin Web SDK - Identity (version ' + versionInfo.webSdkVersion + ')';
});
identity.checkCompatibility(true);
var wizardComponent = null;
var initWizard = async () => {
if (wizardComponent) {
wizardComponent.destroy();
}
var clientInfo = await identity.getClientInfo();
wizardComponent = new Sybrin.Identity.WizardComponent({
id: 'viewport',
api: identity,
documentScanUseModal: (!clientInfo.isMobile)
});
wizardComponent.initialize();
wizardComponent.onWizardDone = (result) => {
alert(JSON.stringify(result));
}
wizardComponent.onScanError = (error) => {
alert(error);
}
wizardComponent.onScanCancelled = () => {
console.log('Operation cancelled');
}
}
initWizard();
})
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: #2d2d46;
margin: 0;
padding: 0;
}
header {
background-color: white;
margin-bottom: 24px;
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: 800px) {
header {
display: none;
}
}
.viewport {
border: 2px solid rgba(50, 50, 55, 0.2);
border-radius: 8px;
display: inline-block;
-webkit-box-shadow: 0 0 16px 8px rgba(50, 50, 55, 0.2);
box-shadow: 0 0 16px 8px rgba(50, 50, 55, 0.2);
width: 80%;
max-width: 1024px;
overflow: hidden;
}
.sybrin-demo-loading {
color: white;
padding: 20px;
}
@media screen and (max-width: 800px) {
header {
display: none;
}
.viewport {
width: calc(100% - 4px);
}
}
.sybrin-debug-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-identity-wizard {
position: relative;
width: 100%;
min-height: 360px;
margin: auto;
}
.sybrin-identity-container {
position: relative;
padding: 12px;
width: 100%;
margin: auto;
background-color: white;
box-sizing: border-box;
border-radius: 8px;
}
.sybrin-identity-halves {
display: flow-root;
}
.sybrin-identity-half {
float: left;
width: 50%;
margin: 0;
text-align: center;
padding: 12px;
box-sizing: border-box;
}
.sybrin-identity-half p {
margin-top: 0;
margin-bottom: 12px;
}
.sybrin-identity-block {
border: 2px solid rgb(234, 234, 234);
border-radius: 8px;
width: 100%;
box-sizing: border-box;
}
.sybrin-identity-block-icon {
margin: 24px;
}
.sybrin-identity-block-icon svg {
height: 40px;
}
.sybrin-identity-block-icon svg path {
stroke: inherit;
fill: inherit;
}
.sybrin-identity-block-prompt {
margin: 24px;
min-height: 36px;
}
.sybrin-identity-block-button {
margin: 0 24px 24px 24px;
border: 2px solid rgb(234, 239, 253);
background-color: rgb(234, 239, 253);
border-radius: 8px;
color: rgb(53, 102, 247);
cursor: pointer;
padding: 16px;
}
.sybrin-identity-component-section {
padding: 12px;
}
.sybrin-identity-button-section {
text-align: right;
}
.sybrin-identity-button-section .sybrin-identity-flow-button {
margin: 12px;
}
.sybrin-identity-align-left {
text-align: left;
}
.sybrin-identity-flow-button {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
color: white;
font-weight: bold;
padding: 16px;
text-decoration: none;
text-align: center;
cursor: pointer;
background: rgb(53, 102, 247);
width: 224px;
border: 2px solid rgb(53, 102, 247);
}
.sybrin-identity-flow-button.sybrin-secondary {
border: 2px solid rgb(234, 239, 253);
background-color: rgb(234, 239, 253);
color: rgb(53, 102, 247);
}
.sybrin-identity-flow-button:disabled {
color: rgba(50, 50, 55, 0.4);
background: transparent;
border: 2px solid rgb(234, 234, 234);
}
.sybrin-identity-list {
width: 100%;
max-width: 464px;
margin: auto;
padding: 16px;
background-color: rgb(244, 244, 244);
border-radius: 8px;
max-height: 448px;
overflow-y: auto;
overflow-x: hidden;
box-sizing: border-box;
border: 2px solid rgb(234, 234, 234);
}
.sybrin-identity-card {
display: block;
height: 48px;
padding: 16px;
text-align: left;
border-radius: 8px;
cursor: pointer;
}
.sybrin-identity-card-image {
float: left;
height: 48px;
border-radius: 8px;
overflow: hidden;
}
.sybrin-identity-card-image img {
height: 100%;
}
.sybrin-identity-icon {
float: left;
width: 48px;
}
.sybrin-identity-icon svg {
height: 48px;
}
.sybrin-identity-icon svg path {
stroke: inherit;
fill: inherit;
}
.sybrin-identity-text {
float: left;
position: relative;
top: 50%;
transform: translateY(-50%);
margin-left: 24px;
}
.sybrin-identity-card-title {
margin: 4px;
font-weight: bold;
}
.sybrin-identity-card-subtitle {
margin: 4px;
}
.sybrin-identity-selected {
background-color: rgb(53, 102, 247);
box-shadow: 0px 16px 32px #3264FA4D;
color: white;
}
.sybrin-identity-selected .sybrin-identity-icon svg path {
stroke: white;
fill: white;
}
.sybrin-identity-video {
position: relative;
width: 100%;
z-index: 4;
margin: auto;
border: 8px solid rgb(53, 102, 247);
border-radius: 8px;
box-sizing: border-box;
}
.sybrin-identity-video-mirrored {
display: block;
width: 100%;
z-index: 4;
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
}
.sybrin-identity-prompt-container {
z-index: 100;
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding-top: 4px;
padding-bottom: 4px;
color: black;
}
.sybrin-identity-prompt-container-top {
top: 0;
}
.sybrin-identity-prompt-container-bottom {
bottom: 0px;
}
.sybrin-identity-prompt {
text-align: center;
color: black;
}
.sybrin-identity-fullscreen-video-container {
position: fixed;
width: 100vw;
height: 100vh;
z-index: 3;
top: 0;
left: 0;
background-color: black;
}
.sybrin-identity-result-fields {
width: 100%;
padding: 0 12px;
border-radius: 8px;
max-height: 344px;
overflow-y: auto;
overflow-x: hidden;
box-sizing: border-box;
}
.sybrin-identity-result-group {
display: flow-root;
}
.sybrin-identity-result-field {
width: calc(50% - 12px);
margin-bottom: 12px;
box-sizing: border-box;
}
.sybrin-identity-float-left {
float: left;
}
.sybrin-identity-float-right {
float: right;
}
.sybrin-identity-result-field div {
position: relative;
min-height: 45px;
}
.sybrin-identity-result-field input {
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border: 2px solid rgb(53, 102, 247);
border-radius: 8px;
box-sizing: border-box;
padding-top: 16px;
padding-left: 16px;
}
.sybrin-identity-result-field label {
position: absolute;
top: 6px;
left: 17px;
opacity: 0.5;
font-size: 11px;
}
.sybrin-identity-result-image {
width: 100%;
border-radius: 8px;
overflow: hidden;
height: 230px;
}
.sybrin-identity-result-image img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
.sybrin-identity-fail-message {
padding: 12px;
color: #a8262b;
}
.sybrin-identity-prompt-message {
padding: 12px;
}
.sybrin-mobile-capture-url {
word-break: break-all;
}
.sybrin-custom-scrollbar::-webkit-scrollbar-track
{
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: rgb(244, 244, 244);
border-radius: 10px;
}
.sybrin-custom-scrollbar::-webkit-scrollbar
{
width: 10px;
background-color: rgb(244, 244, 244);
}
.sybrin-custom-scrollbar::-webkit-scrollbar-thumb
{
border-radius: 10px;
background-image: -webkit-gradient(linear,
left bottom,
left top,
color-stop(0.44, rgb(53, 102, 247)),
color-stop(0.72, rgb(53, 102, 247)),
color-stop(0.86, rgb(53, 102, 247)));
}
.sybrin-identity-wizard-navigation {
width: 100%;
position: relative;
}
.sybrin-identity-wizard-back {
color: #0078c8;
position: absolute;
border: none;
left: 0;
background: none;
font-size: 24px;
padding: 31px 20px 20px 30px;
cursor: pointer;
font-weight: bold;
}
.sybrin-hidden {
display: none;
}
.sybrin-identity-loader-wrapper {
background-color: white;
z-index: 6;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.sybrin-identity-loader {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
top: 50%;
transform: translateY(-50%);
}
.sybrin-identity-loader div {
position: absolute;
width: 6px;
height: 6px;
background: #0078c8;
border-radius: 50%;
animation: sybrin-identity-loader 1.2s linear infinite;
}
.sybrin-identity-loader div:nth-child(1) {
animation-delay: 0s;
top: 37px;
left: 66px;
}
.sybrin-identity-loader div:nth-child(2) {
animation-delay: -0.1s;
top: 22px;
left: 62px;
}
.sybrin-identity-loader div:nth-child(3) {
animation-delay: -0.2s;
top: 11px;
left: 52px;
}
.sybrin-identity-loader div:nth-child(4) {
animation-delay: -0.3s;
top: 7px;
left: 37px;
}
.sybrin-identity-loader div:nth-child(5) {
animation-delay: -0.4s;
top: 11px;
left: 22px;
}
.sybrin-identity-loader div:nth-child(6) {
animation-delay: -0.5s;
top: 22px;
left: 11px;
}
.sybrin-identity-loader div:nth-child(7) {
animation-delay: -0.6s;
top: 37px;
left: 7px;
}
.sybrin-identity-loader div:nth-child(8) {
animation-delay: -0.7s;
top: 52px;
left: 11px;
}
.sybrin-identity-loader div:nth-child(9) {
animation-delay: -0.8s;
top: 62px;
left: 22px;
}
.sybrin-identity-loader div:nth-child(10) {
animation-delay: -0.9s;
top: 66px;
left: 37px;
}
.sybrin-identity-loader div:nth-child(11) {
animation-delay: -1s;
top: 62px;
left: 52px;
}
.sybrin-identity-loader div:nth-child(12) {
animation-delay: -1.1s;
top: 52px;
left: 62px;
}
@keyframes sybrin-identity-loader {
0%,
20%,
80%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
}
@media screen and (max-width: 1060px) {
.sybrin-identity-prompt-container {
padding-top: 2px;
padding-bottom: 2px;
font-size: 12px;
}
}
@media screen and (max-width: 800px) {
.sybrin-identity-half {
float: none;
width: 100%;
float: left;
}
.sybrin-identity-block-prompt {
min-height: auto;
}
.sybrin-identity-result-field {
width: 100%;
}
.sybrin-identity-flow-button {
width: 198px;
}
}
@media screen and (max-width: 600px) {
.sybrin-identity-prompt-container {
padding: 0;
font-size: 11px;
}
}
@media screen and (max-width: 500px) {
.sybrin-identity-container {
padding: 6px;
}
.sybrin-identity-block-icon {
margin: 12px !important;
}
.sybrin-identity-block-prompt {
margin: 12px !important;
}
.sybrin-identity-half {
padding: 6px;
}
.sybrin-identity-block-button {
margin: 12px 12px !important;
}
.sybrin-identity-flow-button {
margin: 6px !important;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
max-width: calc(100% - 12px);
}
.sybrin-identity-component-section {
padding: 6px;
}
.sybrin-identity-list {
padding: 8px;
}
.sybrin-identity-card {
padding: 8px;
}
.sybrin-identity-text {
margin-left: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: calc(100% - 60px);
}
.sybrin-identity-align-left {
text-align: center;
}
.sybrin-identity-align-right {
text-align: center;
}
.sybrin-identity-button-section {
text-align: center;
}
.sybrin-identity-result-image {
height: 160px;
}
.sybrin-identity-result-fields {
padding: 0 6px;
}
.sybrin-identity-result-field {
margin-bottom: 6px;
}
}
@media screen and (max-height: 700px) {
.sybrin-identity-result-fields {
max-height: 200px;
}
}
.sybrin-identity-modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1000;
}
.sybrin-identity-modal {
width: 100%;
max-width: 450px;
margin: auto;
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: center;
}
.sybrin-identity-modal-message {
background-color: white;
border-top: 2px solid rgb(234, 239, 253);
border-left: 2px solid rgb(234, 239, 253);
border-right: 2px solid rgb(234, 239, 253);
border-top-left-radius: 8px;
border-top-right-radius: 8px;
width: calc(100% - 48px);
padding: 24px;
}
.sybrin-identity-modal-commands {
background-color: white;
border-bottom: 2px solid rgb(234, 239, 253);
border-left: 2px solid rgb(234, 239, 253);
border-right: 2px solid rgb(234, 239, 253);
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
padding: 0 0 24px 0;
width: 100%;
}
.sybrin-identity-modal-commands button {
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
color: white;
font-weight: bold;
padding: 16px;
text-decoration: none;
text-align: center;
cursor: pointer;
background: rgb(53, 102, 247);
width: 224px;
border: 2px solid rgb(53, 102, 247);
}
@media screen and (max-width: 500px) {
.sybrin-identity-modal {
width: calc(100% - 48px);
}
}
@media screen and (max-width: 310px) {
.sybrin-identity-modal-commands button {
width: calc(100% - 48px);
}
}