FAQ
Last updated
Last updated
Answer:
The CAF Face Liveness SDK provides a solution for verifying whether the face captured by a mobile device's camera is from a live person and not a photo, video, or other forms of spoofing. It’s widely used in scenarios where identity verification is crucial, such as KYC (Know Your Customer), fraud prevention, and secure access.
Answer:
The SDK supports iOS 13.0 and above, ensuring compatibility with modern iOS devices. Your iOS project should meet the minimum target of iOS 13.0.
For more requirement details, such as Xcode and Swift versions, please refer to the .
Answer:
The SDK requires the following permissions:
Camera access (NSCameraUsageDescription
in Info.plist
)
Internet access (NSAppTransportSecurity
for network requests, if necessary)
Ensure these permissions are properly declared in your app's Info.plist
file and handle permission requests appropriately.
Answer:
To integrate the SDK:
Add the SDK framework to your Xcode project.
Configure necessary permissions for the camera and internet access in your app’s Info.plist
.
Initialize the SDK in your application's lifecycle, typically within viewDidLoad()
of your main view controller.
Answer:
Answer:
To start the liveness check, follow these steps:
Build the liveness session using the SDK’s builder.
Start the liveness verification by calling the startSDK()
method.
Capture the result in the delegate methods.
Answer:
Some common errors include:
Camera permission not granted: Ensure your app requests the necessary permissions at runtime.
SDK initialization failure: Check your SDK setup and ensure it is properly initialized in the app lifecycle.
Network errors: Ensure the device has an active internet connection for the liveness check to succeed.
For detailed instructions, please refer to the
The current version of the SDK is regularly updated. You can find the latest version information, including changelogs and version-specific details, .
For more details on how to initiate the process, refer to the .
For more troubleshooting details, refer to the .