Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get the user's apple ID through the SDK?

Tags:

is it possible to get the user's information, such as apple ID, through the sdk? I am writing an app which will require an account linked to the app user. I want to allow the user to have one account across multiple devices, so using the device ID is not possible. The easiest way to do this, I am thinking, is to use the app user's apple ID as this account's ID, so not requiring them to create yet another account.

like image 781
gjrwebber Avatar asked Jan 05 '10 22:01

gjrwebber


1 Answers

No, it's a privacy issue, just like their phone number.

They'd still have to create an account on your site since you don't have access to Apple's databases, and no one will be willing to give you their iTunes passwords for obvious reasons.

All you're really saving is them entering a user name, since they'd still have to give you a password. It's very easy to remember this data for future runs of your application. Look into using NSUserDefaults. I would recommend against using the UDID and give the user the option to save their password. That way if the phone is lost, whoever finds it doesn't have automatic access to the owner's account. If the user opts for automatic login, you can easily save the password and send it along with the username when the app loads.

like image 119
David Kanarek Avatar answered Dec 18 '22 02:12

David Kanarek