
Product
Introducing Socket MCP for Claude Desktop
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
This component offers the following features: - Live capture or from gallery import of Columbian identity documents thanks to Blink ID in browser SDK. - Liveness detection from a camera thanks to id3 Face PAD web component. - A face match process between
This component offers the following features:
You can find a live demo here
An API key, an API url and a Blink ID license key are required to use this web component.
The authentication process shall be performed from the application backend to avoid making the API key in website source code.
The authentication process consists in the following steps:
POST Request
Url : api_url/authenticate
Body (json): { "key" : "$your_api_key_to_insert_here" }
Response (json) : { "bearerToken" : "the_generated_token_to_give_to_the_web_component" }
authorization
of the web component.npm i @id3/kyc --save
The web component can be imported into an Angular application using the following code instruction:
import { Id3KycModule } from '@id3/kyc';
Then, the Id3KycModule has to be imported in the app.module.ts file:
...
imports: [
...,
Id3KycModule,
...
],
...
The Kyc component uses images and Microblink SDK contained in its assets folder. So, glob patterns have to be included in the assets
section of the build
section of the angular.json file:
...
"assets": [
{
"glob": "**/*",
"input": "node_modules/@id3/kyc/assets/",
"output": "/assets/"
},
{
"glob": "**/*",
"input": "node_modules/@microblink/blinkid-in-browser-sdk/resources/",
"output": "/assets/lib/"
}
...
],
...
The component uses bootstrap for theming, so that bootstrap css and js and jquery js have to be included in the style
and script
sections of the build
section of the angular.json file:
...
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
...
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js",
...
]
...
The Id3 KYC web component hasto be added into an html page or a template file:
<id3-kyc
[authorization]="$apiKey"
[apiUrl]="$apiEndpoint"
[language]="$language"
[blinkIdLicenseKey]="$blinkIdLicenseKey"
></id3-kyc>
Name | Type | Default | Description |
---|---|---|---|
authorization | string | default | Bearer token returned by the authentication process |
apiUrl | string | default | Base URL of the API |
language | LanguageSupportedType | Set the language manually (LanguageSupportedType = 'en' | 'fr' | 'es'). If the parameter is not filled in and the browser language is not supported, spanish is used. | |
blinkIdLicenseKey | string | Blink ID license key |
Name | Parameters | Description |
---|---|---|
startEvent | Callback invoked when the process is started. | |
endEvent | Document information and match decision | Callback invoked when the process is done. |
cancelEvent | Callback invoked on cancel button click. | |
authTimeOutHandler | Callback invoked on secured session invalid. Authorization token has to be renewed by authenticating to the API. |
Exemple of information returned by endEvent:
{
biographics: {
NUIP: "__",
lastNames: "__",
firstNames: "__",
particle: "__",
sex: "__"
},
faceMatch: boolean
}
FAQs
This component offers the following features: - Live capture or from gallery import of Columbian identity documents thanks to Blink ID in browser SDK. - Liveness detection from a camera thanks to id3 Face PAD web component. - A face match process between
We found that @id3/kyc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.