tags:

views:

320

answers:

3

Hi, 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.

A: 

It's not (AFAIK) possible. You can only retrieve the device's UDID.

What I've done in the past is link an account on my side with multiple UDIDs on the user's side, so when they install the app on various devices they can just use that single account and it will automatically link that device. Not ideal, but I've not seen a better solution.

John Biesnecker
So that would mean they would have to create an account with you and login to use the service? That is the fallback solution, I am just trying to simplify my process so that the user does not have to create an account and login each time it runs.
gjrwebber
Well, after the first time, you could just link it with the UDID.
chpwn
A: 

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.

David Kanarek
A: 

I have the same question, too.

Regarding the suggestion of creating a login account; is there anything that prevents a user from sharing it with another person ?

I was hoping that the iTunesMetadata.plist was machine readable such that the device can report some identiying data to my CMS server for authentication.