requestId generated by the Create API, performs the silent network handshake, and reports progress through callbacks. Your backend confirms the final result via the Status Check API.
Requirements
Step 1: Add SDK dependency
The SDK can be installed via CocoaPods or Swift Package Manager. Find the latest version of the SDK here.Step 2: Configure Info.plist for SNA
Add the following block to yourInfo.plist only if you are using the SNA feature.
- If the
NSAppTransportSecuritykey is not already present, add the entire block below. - If the
NSAppTransportSecuritykey is already present, add the listed domains one by one underNSExceptionDomains.
Info.plist
Step 3: Start SNA with the requestId
Pass therequestId returned by the Create API to start():
Start polling the Status Check API from your backend immediately after calling
start(). The SDK callback and the server status run in parallel.Step 4: Handle callbacks
Callback reference
The SDK works in two steps — initialization andstart() — and each step has its own set of callbacks.
Step 1: Initialization callbacks
Emitted when the SDK initializes.Step 2: Start callbacks
Emitted after you invokestart() to begin authentication.
For the
errorCode / statusCode values surfaced in SDK callbacks, see SDK Error Codes.Next step
Status Check API
Confirm the authoritative auth status from your server.