Migrate from 2.x to 3.0
Initialize the SDK
What changed
let serverUrl;
let serverCertificate;
let keyIdentifier;
let configurationBuilder = TMGClientConfiguration.Builder(serverUrl: serverUrl,
serverCertificate: Data(serverCertificate.utf8),
serverKeyId: keyIdentifier)
let configuration: TMGClientConfiguration = TMGClientConfiguration(builder: configurationBuilder)let serverURL = ""
let serverCertificate = ""
let serverKeyID = ""
let configuration = TMGClientConfiguration(serverURL: serverURL,
serverCertificate: Data(serverCertificate.utf8),
serverKeyID: serverKeyID)Initialize VisaCTFHelper
Update device binding flows (green and yellow)
Resume a binding (resumeBinding)
Get the binding state (bindingState)
Authenticate a transaction
Remove a binding (removeBinding)
Sync binding state (syncBindingState)
Read the previously selected ID&V method
Last updated
Was this helpful?