fetch(url, method: 'POST', body: JSON.stringify(payload) ) .then(response => response.json()) .then(data => // 'data' contains the encrypted biometric XML packet console.log("Encrypted PID:", data.pid); // Send 'data.pid' to your backend server for verification );
If operating within a regulated framework (like Aadhaar), the device must be "registered." This involves sending a request from the RD Service to a "Device Registration Server." Once registered, the device obtains a unique Device Key and Certificate, which are stored securely within the device or service keystore. online secugen rd
If your device is not automatically registered, you must complete the process manually to avoid "Device Not Registered" errors. fetch(url, method: 'POST', body: JSON
The Secugen Online RD architecture follows a client-server model where the hardware abstraction is decoupled from the web interface. body: JSON.stringify(payload) ) .then(response =>