-
Notifications
You must be signed in to change notification settings - Fork 4
Home
The SDK Device Collector iOS provides a static library which can be linked with an iOS application to perform Device Collection interaction with Kount for native iOS applications on Apple’s iPhone and iPad platforms. The SDK includes a collection of development tools that allow you to build your own customized applications in order to submit information to the Risk Inquiry System (RIS) server. The static library is compiled for iOS version 4.0 and newer. It is a Mach-O universal binary for architectures armv6, armv7, armv7s and i386.
NOTE: For this release and iOS7 applications, merchants should disable mac address collection as Apple has effectively short circuited this capability. To turn mac address collection off in Version 2.0 of the iOS SDK, the merchant will need to pass the DC_COLLECTOR_DEVICE_ID flag within an array to the skip function of the SDK.
NSMutableArray *skipList = [[NSMutableArray alloc]init];
[skipList addObject:DC_COLLECTOR_DEVICE_ID];
[self.deviceCollector setSkipList:skipList];
Kount supports authentication using either Certificates or API Keys. The SDK must be set to either use a Certificate or an API Key. Which ever option is set in the SDK will be used for authentication. If it is set to use both the API Key and a Certificate, the selection will default to the API Key. If it is set to neither, authentication will not occur.