I'm writting an application for iphone, which communicates with my server using REST. The main problem is, I need to identify user somehow. Not so long ago, we were allowed to use UDID, but now its not allowed anymore. So what should I use instead? I need some kind of identifier on iphone, so user will delete application, install it again, and he will get same id.
|
|
Firstly, the UDID is only deprecated in iOS 5. That doesn't mean it's gone (yet). Secondly, you should ask yourself if you really need such a thing. What if the user gets a new device and installs your app on that? Same user, but the UDID has changed. Meanwhile, the original user might have sold his old device so now a completely new user installs your app and you think it's a different person based on the UDID. If you don't need the UDID, use If you really need a unique device identifier (it doesn't sound like you do), go for the MAC address as pointed out in Suhail's answer. |
|||||||||||||||
|
|
I used
Then set the above UUID to my NSString:
I then stored that UUID to the Keychain using SSKeyChain To set the UUID with SSKeyChain:
To Retrieve it:
When you set the UUID to the Keychain, it will persist even if the user completely uninstalls the App and then installs it again. To make sure ALL devices have the same UUID in the Keychain.
You now have a Unique Identifier that is persistent and shared/synced with all devices. |
|||||||||||
|
|
There is a nice alternative on Github which generates a Unique Identifier based on a combination of Mac Address and the Bundle Identifier which works pretty well: UIDevice-with-UniqueIdentifier-for-iOS-5 |
|||||
|
|
This is a hot topic indeed. I have an app that I have to migrate because it used the UDID to name an XML file to be stored on a server. Then the device with the app would connect to the server and download its specific udid.xml and parse it to work. Ive been thinking that indeed if the user moves to a new device, the app will break. So I really should use something else. The thing is, I don't use a database for the data. The data is simply stored in an xml format, one xml file per device stored on the cloud. Im thinking the best thing would be to have the user fill out the data on the web, have php create a token on the fly which will not be stored in a database but rather sent to the user. The user can then input the token on the target device and retrieve the xml in question. That would be my solution to the problem. Not sure how to implement the whole 'creating unique tokens' thing though. |
|||
|
|
