iOS6 UDID - What advantages does identifierForVendor have over identifierForAdvertising?

前端 未结 10 1144
清歌不尽
清歌不尽 2020-11-28 18:12

Apple is changing their privacy settings for iOS6 and deprecating device UUIDs (UDIDs). According to a WWDC presentation and the docs there are two replacements for the UDI

相关标签:
10条回答
  • 2020-11-28 19:11

    They are two different ids meant for two different purposes. I would think that the identifierForVendor would be the one to use to do things that require the app linking to a specific user / device such as provide push notifications and updating the user's app data serverside (like their score or whatever other data is being stored for them).
    The identifierForAdvertising should be used for things such as targeted advertising and also to check the effectiveness of a particular ad campaign (check to see which devices installed apps due to a particular ad).

    0 讨论(0)
  • 2020-11-28 19:12

    I suspect that Apple will simply reject your app if you use identifierForAdvertising for anything that is not advertising-related (i.e., if you send the identifierForAdvertising to your own servers even though you're not an advertising network or if you send the identifierForAdvertising in the same request with other data that could potentially identify an individual).

    If my suspicion is correct, the advantage of identifierForVendor over identifierForAdvertising is that it won't get your app rejected.

    0 讨论(0)
  • 2020-11-28 19:13

    identifierForAdvertising is probably superior in terms of tracking but might be subject to present or future opt-out by the user. On the other hand identifierForVendor is not as likely to be subject of the user.

    0 讨论(0)
  • 2020-11-28 19:13

    The important thing to know is that the backup of the identifierForVendor can only be restored to the same device. If the backup is restored to a difference device the identifier is cleared.

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