iOSデバイスのSafariからhttp://get.udid.io/に移動します。それは魅力のように機能し、iTunesや他のコンピュータを必要としません。アプリもインストールされていません。
編集:
また、(当然のことながら)この.mobileconfig証明書を自分のサーバーでホストしたい場合は、.mobileconfigからデバイスUDIDを取得するを参照してください。
自分で作る:
サーバーでホストされている.mobileconfigの例のコピーを用意し、次のフローを処理するために、お気に入りの言語で2〜3個の小さなスクリプトを記述します。
- Safariで、以下のenroll.mobileconfigにリダイレクトするURLに移動します。これにより、iOSは設定アプリを開き、プロファイルを表示します。
- プロファイルを受け入れると、iOSはSafariに戻り、DeviceAttributes配列を指定されたURLenroll.mobileconfigに送信します。
- POSTデータには、要求された属性を持つ.plistファイルが含まれます(以下の例を参照)。そのうちの1つは聖なるUDIDになります。
備考:おそらく、ユーザーフレンドリーなメッセージがいくつかあるはずです。具体的には、ステップ0もあります。このステップでは、HTTPセッションに一時的に保存する名前と電子メールをユーザーに提供してから、要求をmobileconfigプロファイルにリダイレクトするように求められます。最終的にこの情報をiPhoneデータと照合し、わかりやすい確認メールを送信します。HTH。
enroll.mobileconfig
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<dict>
<key>URL</key>
<string>http://support.devcorp.com/uuid/returnurl/</string>
<key>DeviceAttributes</key>
<array>
<string>DEVICE_NAME</string>
<string>UDID</string>
<string>PRODUCT</string>
<string>VERSION</string>
<string>SERIAL</string>
</array>
</dict>
<key>PayloadOrganization</key>
<string>DevCorp Inc.</string>
<key>PayloadDisplayName</key>
<string>Profile Service</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>PayloadUUID</key>
<string>C5FB9D0D-0BE7-4F98-82CC-5D0EA74F8CF8</string> <!-- any random UUID -->
<key>PayloadIdentifier</key>
<string>com.devcorp.profile-service</string>
<key>PayloadDescription</key>
<string>This is a temporary profile to enroll your device for ad-hoc app distribution</string>
<key>PayloadType</key>
<string>Profile Service</string>
</dict>
</plist>
iPhoneによって指定されたURLにPOSTされたサンプル.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PRODUCT</key>
<string>iPhone4,1</string>
<key>SERIAL</key>
<string>DNPGWR2VCTC0</string>
<key>UDID</key>
<string>b01ea7bc2237fed21bfe403c6d2b942ddb3c12c3</string>
<key>VERSION</key>
<string>11A465</string>
</dict>