I have a custom iOS app that has its own login screen using the particle SDK as well as a table view that is populated with the user’s device list. I’m using the examples from the documentation:
SparkCloud.sharedInstance().loginWithUser(particleUserName, password: particlePassword) { (error:NSError?) -> Void in
if error != nil {
print("Wrong credentials or no internet connectivity, please try again")
let alert = UIAlertController(title: "Error", message: "Wrong credentials or no internet connectivity, please try again", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Button", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(alert, animated: true, completion: nil)
}
else {
print("Logged in")
self.performSegueWithIdentifier("tableView", sender: self)
}
}
Where as the user name and password are from a text input field. Then once logged in, I can get the device list using the following code:
var deviceList = [Devices]()
func loadDevices() {
SparkCloud.sharedInstance().getDevices { (sparkDevices:[AnyObject]?, error:NSError?) -> Void in
if error != nil {
print("Check your internet connectivity")
}
else {
if let devices = sparkDevices as? [SparkDevice] {
for device in devices {
print(device)
var temp = Devices(deviceName: device.name!, deviceStat: device.connected)!
self.deviceList.append(temp)
}
}
}
}
}
However, I’m running into an issue where if I refresh the table by calling loadDevices()
again, the device doesn’t actually refresh, while it does. To explain, let’s say I have my photon disconnected when I run my app, login, and list the devices, the photon shows up as “disconnected”. While my app is running, I connect my photon, set it up, and successfully connect to the network. So I refresh my table but it shows up as “disconncected”. So I go to terminal and run particle list
which shows that my photon is connected and online, and then I refresh my table again. Now the photon is shown as online.
Is this an authentication issue? Do I need to do inject a new access token before I can call the SparkCloud.sharedInstance().getDevices
function again? Please let me know if you’ve run into similar problems. I’m also having trouble translating the
$ curl https://api.particle.io/oauth/token -u particle:particle -d grant_type=password -d username=joe@example.com -d password=SuperSecret
command given in the documentation to NSURL
to fit my iOS needs.