从 iOS 设备上的 Safari导航到http://get.udid.io/。它就像一个魅力,既不需要 iTunes 也不需要任何其他计算机。也没有安装应用程序。
编辑:
另外,如果您(可以理解)希望将此 .mobileconfig 证书托管在您的服务器上,请查看从 .mobileconfig 获取设备 UDID 。
做你自己的:
将 .mobileconfig 示例的副本托管在您的服务器上,并用您喜欢的语言编写 2-3 个小脚本来处理以下流程:
- 在 Safari 上导航到重定向到下面的enroll.mobileconfig的 URL 。这使得 iOS 打开设置应用程序并显示配置文件。
- 接受配置文件后,iOS 切换回 Safari,并将 DeviceAttributes 数组发布到指定的 URL 注册.mobileconfig。
- POST 数据将包含一个带有请求属性的 .plist 文件(参见下面的示例)。其中之一将是神圣的 UDID。
备注:您可能应该有一些用户友好的消息。具体来说,我们甚至有一个步骤 0。要求用户提供我们临时存储在 HTTP 会话中的姓名和电子邮件,然后将请求重定向到 mobileconfig 配置文件。我们最终将此信息与 iPhone 数据进行匹配,并发送一封友好的确认电子邮件。HTH。
注册.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>
示例 .plist 由 iPhone 发布到给定的 URL
<?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>