7

現在デバイスにログインしているユーザーのApple IDを取得することは可能ですか? 実際にアプリ内購入を実装し、ユーザーがアプリを購入するときにデバイス ID と Apple ID を取得します。

4

7 に答える 7

6

いいえ、できません。
AppleId の代わりに、 を使用できます[[UIDevice currentDevice] identifierForVendor]

于 2014-09-23T07:26:12.737 に答える
2

いいえ、できません。これは UDID のようなプライバシー要素です。

詳細については、こちらをご覧ください:プライバシーの問題

ただし、必要に応じて、次のメソッドを使用して Apple が提供するidentifierForVendorを使用できます。

[[UIDevice currentDevice] identifierForVendor]
于 2014-09-23T07:25:45.160 に答える
0

Apple IDについてはわかりませんが、プログラムでデバイスIDを取得できます。ハイブリッド アプリを使用している場合は、push phonegap プラグインを使用できます。

https://github.com/phonegap-build/PushPlugin

http://blog.revivalx.com/2014/08/29/implement-push-notifications-for-android-and-ios-phonegap-part-2/

ネイティブ向け

http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1

ところで、デバイス ID と UDID は別のものです。

于 2014-09-23T07:26:22.830 に答える