iOS SDK
Reclaim Protocol's InApp iOS SDK for ZK proof generations for requests with an in-app experience of web verification
Get Started
This SDK allows you to integrate Reclaim's in-app verification process into your iOS application.
Prerequisites
- An iOS application source code (Support for iOS 13 or later).
- An iOS device running iOS 13 or later.
- A Reclaim account where you've created an app and have the app id, app secret.
- A provider id that you've added to your app in Reclaim Devtools.
Example
- See the Reclaim Example - SwiftUI for a complete example of how to use the SDK in a SwiftUI application.
- See the Reclaim Example - SwiftUI with CocoaPods for a complete example of how to use the SDK in a SwiftUI application with CocoaPods.
Installation
1. Adding Reclaim InApp SDK to your Xcode Project
Build the project.
- If you have a
*.xcworkspace
then openYourApp.xcworkspace
in Xcode. Verify that you're opening MyApp.xcworkspace and not opening MyApp.xcodeproj. The .xcworkspace file has the CocoaPod dependencies, the .xcodeproj doesn't. If you don't have a*.xcworkspace
then openYourApp.xcodeproj
in Xcode. - Select Product > Build or press
Cmd + B
.
2. Fixing performance issues
Your app performance will be severely impacted when you run debug executable on a physical device. Fixing this requires a simple change in your Xcode project xcscheme.
3. Use ReclaimInAppSdk in your project
To use ReclaimInAppSdk in your project, follow these steps:
- Import the ReclaimInAppSdk module into your Swift file.
- Create a request object.
More ways to create a request object are available in the ReclaimVerification.Request.*
apis.
- Start the verification flow.
The returned result is a ReclaimVerification.Response
object. This object contains a response that has proofs, exception, and the sessionId if the verification is successful.
If the verification is cancelled or failed, the result will contain an exception.
You can use the ReclaimVerification.Response
object to get the proof, exception, and sessionId.
If the verification is successful, the proof will contain the data that you need to store in your database.
If the verification is cancelled or failed, the exception will contain the error details.
In the above apis, ReclaimVerification.Request.*
, ReclaimVerification.startVerification
or ReclaimVerification.startVerificationFromUrl
can also throw an error. The error can be one of the following:
ReclaimVerificationError.cancelled
: The verification was cancelled by the user.ReclaimVerificationError.dismissed
: The verification was dismissed by the sdk.ReclaimVerificationError.failed(let error)
: The verification failed due to an error.ReclaimVerificationError.sessionExpired
: The verification session expired.
You can handle the error by using a do-catch
block. For example:
For a complete example, see the Reclaim Example - SwiftUI.
Advanced Usage
Overriding SDK Config
You can customize the verification flow by overriding the default SDK configuration with ReclaimVerification.setOverrides
.
Read more about overrides in Reclaim InApp SDK Documentation | Overrides
Upgrading
To upgrade to a new version of the Reclaim InApp SDK, follow these steps:
- Make sure you have the latest version of the Reclaim InApp SDK. Currently the latest version is
v0.3.0
. - Incase of any problems: remove package, clear build, restart Xcode, and add package again.
Migration guides will be available when a new version with API changes is released.