从iOS设备上的Safari浏览至http://get.udid.io/。它的工作原理很简单,不需要iTunes或任何其他计算机。也没有安装任何应用程序。
编辑:
另外,如果您(可以理解)希望将此.mobileconfig证书托管在您自己的服务器上,请看看从.mobileconfig获取设备UDID。
自己承担:
在您的服务器上托管.mobileconfig示例的副本,并以您喜欢的语言编写2-3个小脚本来处理以下流程:
- 在Safari上浏览至重定向到下面的enroll.mobileconfig的URL 。这使iOS打开“设置”应用并显示配置文件。
- 接受配置文件后,iOS会切换回Safari并将DeviceAttributes数组发布到指定的URL enroll.mobileconfig。
- POST数据将包含具有所请求属性的.plist文件(请参见下面的示例)。其中之一将是神圣的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的示例.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>