WPA2EnterpriseProfile
NSString * ssid;
NSString * outerIdentity;
NSString * username;
NSArray <NSString *> * trustedServerNames;
NSString * installedBy;
NSDate * installed;Variable
Description
Example
ssid
Wi-Fi network SSID to connect to
securewifi.io
outerIdentity
The identity string to be used in the EAP-Identity/Response packet during outer EAP authentication.
username
username associated to the profile
YYYYYZZZXXX1
trustedServerNames
An array of server certificate common name strings used to verify a server's certificate
["get.securewifi.io"]
installedBy
the bundleId of the app installed the profile
com.cloud4wi.c4wiapp
installed
date when the profile has been installed
2022-07-08 08:08:44 +0000
Example
var profiles: Array<WPA2EnterpriseProfile>
profiles = cloud4WiSDKWiFi.getCreatedWPA2EnterpriseProfiles()
var profile : WPA2EnterpriseProfile
profile = profiles[0]
print(profile.ssid)
print(profile.outerIdentity)
print(profile.username)
print(profile.trustedServerNames)
print(profile.installedBy)
print(profile.installed)NSArray<WPA2EnterpriseProfile *> *profiles = [cloud4WiSDKWiFi getCreatedWPA2EnterpriseProfiles];
WPA2EnterpriseProfile* profile = [profiles firstObject];
NSLog(@"%@", profile.ssid);
NSLog(@"%@", profile.outerIdentity);
NSLog(@"%@", profile.username);
NSLog(@"%@", profile.trustedServerNames);
NSLog(@"%@", profile.installedBy);
NSLog(@"%@", profile.installed);output
Last updated
Was this helpful?