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

后端 未结 5 2111
自闭症患者
自闭症患者 2020-12-07 00:54

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 t

相关标签:
5条回答
  • 2020-12-07 00:58

    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.

    0 讨论(0)
  • 2020-12-07 01:04

    I am storing the username and encrypted password in a file that is stored in the user's application file space. When the app starts up, if it finds this file, it attempts a login without asking the user. Having a password, even encrypted, stored in the file system does seem insecure, but the application is not one where people are apt to try and steal passwords.

    0 讨论(0)
  • 2020-12-07 01:07

    If it is a game, you can use the Game Center Account to identify an user

    0 讨论(0)
  • 2020-12-07 01:11

    Instead of the UDID for the device, you might try the [UIDevice currentDevice].identifierForVendor It is linked to the device and the app installation.

    0 讨论(0)
  • 2020-12-07 01:12

    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.

    0 讨论(0)
提交回复
热议问题