### Javascript Face Session Example Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/javascript-usage A complete HTML and Javascript example for initiating a face session using the Uqudo SDK. It includes SDK setup, event handling for a button click, and the necessary parameters for starting a face session. ```html Uqudo sample
``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyb/getting-started Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo Xamarin SDK Integration Examples Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/enrolment This snippet provides example code for integrating the Uqudo SDK into a Xamarin application. It covers common integration tasks such as plugin installation, calling the SDK for enrollment, and processing the results. The examples are hosted on GitHub. ```bash # Example command for plugin installation (conceptual) # Refer to the GitHub repository for specific installation steps. ``` ```csharp // Example C# code for calling the Uqudo SDK (conceptual) // Refer to the GitHub repository for detailed implementation. ``` ```csharp // Example C# code for processing SDK results (conceptual) // Refer to the GitHub repository for detailed implementation. ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/sdk-initialisation Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Flutter Enrolment Flow Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/enrolment Provides example code for integrating the Uqudo SDK into a Flutter application. This covers plugin installation, calling the SDK for user enrolment, and processing the results. ```Dart /* * Example code for Flutter integration with Uqudo SDK. * Please refer to the official Uqudo GitHub repository for the complete sample application. * https://github.com/uqudo-com/sample-app-flutter */ import 'package:uqudo_flutter/uqudo_flutter.dart'; // Placeholder for calling the SDK // Future startUqudoEnrolment() async { // try { // final result = await UqudoFlutter.startEnrolment( // // enrolment configuration options // ); // print('Enrolment Result: $result'); // // Process the enrolment result // } catch (e) { // print('Enrolment Error: $e'); // // Handle enrolment errors // } // } ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyb/getting-started/use-cases Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/ios/prepare-environment Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Cordova Enrolment Flow Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/enrolment Offers example code for using the Uqudo SDK within a Cordova application. This includes plugin installation, initiating the enrolment process, and handling the outcomes. ```JavaScript /* * Example code for Cordova integration with Uqudo SDK. * Please refer to the official Uqudo GitHub repository for the complete sample application. * https://github.com/uqudo-com/sample-app-cordova */ // Placeholder for calling the SDK // cordova.plugins.UqudoCordova.startEnrolment({ // // enrolment configuration options // }, function(result) { // console.log('Enrolment Result:', result); // // Process the enrolment result // }, function(error) { // console.error('Enrolment Error:', error); // // Handle enrolment errors // }); ``` -------------------------------- ### Uqudo SDK Integration for Web Source: https://docs.uqudo.com/docs/kyb/getting-started Details the integration of the Uqudo SDK into web applications. Covers SDK installation for various JavaScript frameworks, initialization, CORS configuration, and the enrolment and face session flows. ```markdown + [SDK installation](/docs/kyc/uqudo-sdk/integration/web/sdk-installation) + [SDK Initialisation](/docs/kyc/uqudo-sdk/integration/web/sdk-initialisation) + [CORS](/docs/kyc/uqudo-sdk/integration/web/cors) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/web/enrolment-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/web/face-session-flow) ``` -------------------------------- ### Capacitor Enrolment Flow Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/enrolment Provides example code for integrating the Uqudo SDK within a Capacitor application. This covers plugin installation, calling the SDK for enrolment, and processing the results. ```TypeScript /* * Example code for Capacitor integration with Uqudo SDK. * Please refer to the official Uqudo GitHub repository for the complete sample application. * https://github.com/uqudo-com/sample-app-capacitor */ import { UqudoCapacitor } from 'uqudo-capacitor-plugin'; // Placeholder for calling the SDK // async function startUqudoEnrolment() { // try { // const result = await UqudoCapacitor.startEnrolment({ // // enrolment configuration options // }); // console.log('Enrolment Result:', result); // // Process the enrolment result // } catch (error) { // console.error('Enrolment Error:', error); // // Handle enrolment errors // } // } ``` -------------------------------- ### Xamarin Face Authentication Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/face-authentication Provides example code for integrating Uqudo's Face Authentication plugin within a Xamarin application. It covers plugin installation, SDK calls, and result processing. ```C# /* * Example code for Uqudo's Xamarin plugin. * Please refer to the GitHub repository for the full implementation. * https://github.com/uqudo-com/sample-app-xamarin */ // Placeholder for actual C# code System.Console.WriteLine("Xamarin Face Authentication Example"); ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/android/prepare-environment Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyb/getting-started/integration-options Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Flutter Face Authentication Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/face-authentication Provides example code for integrating Uqudo's Face Authentication plugin within a Flutter application. It covers plugin installation, SDK calls, and result processing. ```Dart /* * Example code for Uqudo's Flutter plugin. * Please refer to the GitHub repository for the full implementation. * https://github.com/uqudo-com/sample-app-flutter */ // Placeholder for actual Dart code print('Flutter Face Authentication Example'); ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/readme/customer-portal/create-a-support-request Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Cordova Face Authentication Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/face-authentication Provides example code for integrating Uqudo's Face Authentication plugin within a Cordova application. It covers plugin installation, SDK calls, and result processing. ```JavaScript /* * Example code for Uqudo's Cordova plugin. * Please refer to the GitHub repository for the full implementation. * https://github.com/uqudo-com/sample-app-cordova */ // Placeholder for actual JavaScript code console.log("Cordova Face Authentication Example"); ``` -------------------------------- ### Capacitor Face Authentication Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/face-authentication Provides example code for integrating Uqudo's Face Authentication plugin within a Capacitor application. It covers plugin installation, SDK calls, and result processing. ```TypeScript /* * Example code for Uqudo's Capacitor plugin. * Please refer to the GitHub repository for the full implementation. * https://github.com/uqudo-com/sample-app-capacitor */ // Placeholder for actual TypeScript code console.log("Capacitor Face Authentication Example"); ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/readme/customer-portal Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Get Image by ID (JavaScript) Source: https://docs.uqudo.com/docs/kyc/uqudo-api/info This JavaScript example shows how to make a GET request to the Uqudo Info Image API to download an image. It utilizes the fetch API and includes the required Authorization header. ```JavaScript async function getImage(id, token) { const response = await fetch(`https://id.uqudo.io/api/v1/info/img/${id}`, { method: 'GET', headers: { 'Authorization': `Bearer ${token}`, 'Accept': 'image/jpeg' } }); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); } const imageBlob = await response.blob(); return imageBlob; } ``` -------------------------------- ### Create Uqudo SDK Instance (JavaScript) Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/sdk-initialisation This snippet demonstrates how to create an instance of the Uqudo SDK using the `uqudoSdkFactory.create` method. It outlines the necessary and optional parameters for initialization, including API base URL, access token, nonce, and configuration for assets and texts. ```JavaScript import uqudoSdkFactory from "uqudosdk-web"; const uqudoSdk = uqudoSdkFactory.create({ baseURL?: string; accessToken: string; nonce?: string; assets?: IAssetsArg; texts?: ITextsArg; }); ``` -------------------------------- ### React Native Enrolment Flow Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/enrolment Shows example code for calling the Uqudo SDK within a React Native application. This includes plugin installation, initiating the enrolment process, and handling the returned data. ```JavaScript /* * Example code for React Native integration with Uqudo SDK. * Please refer to the official Uqudo GitHub repository for the complete sample application. * https://github.com/uqudo-com/sample-app-react-native */ import UqudoReactNative from 'react-native-uqudo'; // Placeholder for calling the SDK // const startUqudoEnrolment = async () => { // try { // const result = await UqudoReactNative.startEnrolment({ // // enrolment configuration options // }); // console.log('Enrolment Result:', result); // // Process the enrolment result // } catch (error) { // console.error('Enrolment Error:', error); // // Handle enrolment errors // } // }; ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyb/getting-started/use-cases/low-complexity Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### React Native Face Authentication Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/face-authentication Provides example code for integrating Uqudo's Face Authentication SDK into a React Native application. It covers plugin installation, SDK calls, and result processing. ```JavaScript /* * Example code for Uqudo's React Native SDK. * Please refer to the GitHub repository for the full implementation. * https://github.com/uqudo-com/sample-app-react */ // Placeholder for actual JavaScript code console.log('React Native Face Authentication Example'); ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/readme/use-cases Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### iOS Objective-C Enrolment Flow Example Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/enrolment Provides example code for integrating and calling the Uqudo SDK for user enrolment in an iOS application using Objective-C. This covers the setup, initiation of the enrolment flow, and processing of the results. ```Objective-C /* * Example code for iOS Objective-C integration with Uqudo SDK. * Please refer to the official Uqudo GitHub repository for the complete sample application. * https://github.com/uqudo-com/sample-app-ios-objectivec */ // Placeholder for actual SDK call // [[UqudoSDK sharedInstance] startEnrolmentFromViewController:self delegate:self config:enrolmentConfig]; // Placeholder for delegate method to handle results // @interface ViewController () // @end // @implementation ViewController // - (void)enrolmentCompletedWithResult:(UqudoEnrolmentResult *)result { // // Process the enrolment result // } // - (void)enrolmentFailedWithError:(NSError *)error { // // Handle enrolment errors // } // @end ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/capacitor/plugin-installation Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Javascript Passport Enrollment Example Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/javascript-usage A complete HTML and Javascript example for initiating a passport enrollment process using the Uqudo SDK. It includes SDK setup, event handling for a button click, and configuration for document scanning, facial recognition, and background checks. ```html Uqudo sample
``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/coverage/middle-east/bahrain Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/validation-and-parsing Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyb/getting-started/integration-options/uqudo-api Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/coverage/middle-east/qatar Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/upgrade-the-sdk Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/security-and-best-practices Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Integration for Web Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/sdk-installation Details the integration of the Uqudo SDK into web applications. Covers SDK installation for various JavaScript frameworks, initialization, CORS configuration, and the enrolment and face session flows. ```markdown + [SDK installation](/docs/kyc/uqudo-sdk/integration/web/sdk-installation) + [SDK Initialisation](/docs/kyc/uqudo-sdk/integration/web/sdk-initialisation) + [CORS](/docs/kyc/uqudo-sdk/integration/web/cors) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/web/enrolment-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/web/face-session-flow) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/coverage/europe/ireland Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure/verification-object Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/coverage/europe/gibraltar-uk Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/sdk-installation Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/ui-customisation/assets-and-images Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/encrypt-the-sdk-result Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure/reading-object/turkish-id Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-api Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/coverage/africa/libya Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/coverage/europe/united-kingdom Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/download-a-resource Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure/scan-object Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc... Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/readme/use-cases/enrolment Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure/reading-object Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/coverage/asia/singapore Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure/reading-object/uae-id Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure/reading-object/saudi-id Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/readme/integration-options Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure/reading-object/passports Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/integration/web/enrolment-flow Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Web Installation Options Source: https://docs.uqudo.com/docs/coverage/europe/portugal Explains the different ways to install the Uqudo SDK for web projects. Covers installation for vanilla HTML+JS projects and integration with JavaScript frameworks like React, Angular, and Vue.js. ```markdown - [Vanilla HTML+JS project](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/vanilla-html%2Bjs-project) - [JS Frameworks (React, Angular, VueJs, etc...)](/docs/kyc/uqudo-sdk/integration/web/sdk-installation/js-frameworks-react-angular-vuejs-etc...) ``` -------------------------------- ### Uqudo SDK Integration for Android Source: https://docs.uqudo.com/docs/kyc/uqudo-sdk/sdk-result/data-structure/reading-object/senegal-id Guides developers on integrating the Uqudo SDK into Android applications. Covers environment setup, enrolment and lookup flows, face session management, and UI customization options like branding and text localization. ```markdown + [Prepare Environment](/docs/kyc/uqudo-sdk/integration/android/prepare-environment) + [Enrolment Flow](/docs/kyc/uqudo-sdk/integration/android/enrolment-flow) + [Lookup Flow](/docs/kyc/uqudo-sdk/integration/android/lookup-flow) + [Face Session Flow](/docs/kyc/uqudo-sdk/integration/android/face-session-flow) + [UI Customisation](/docs/kyc/uqudo-sdk/integration/android/ui-customisation) + [Analytics](/docs/kyc/uqudo-sdk/integration/android/analytics) ```