Integration Examples
A typical integration keeps the SDK behind a thin application helper.
Example Pattern
import {biometricClientHelper} from 'sophid-web-sdk';
export const sophidClient = biometricClientHelper.init(config);
Then application code calls sophidClient.enrollUser() or
sophidClient.authenticateUser() without duplicating the transport logic across
pages.
Recommended Structure
- One initialization module
- One place for API endpoint configuration
- Thin UI components that call high-level methods