ios - 按下安装后从 iOS 配置文件返回什么类型的响应
<p><p>在设置配置文件期间(通过 mobileconfig)在 Apple 设备上按“安装”时,会返回什么?是 XML、post 值等吗?</p>
<p>我正在尝试通过 Nodejs 提取设备 UDID 等。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>响应是 POST 请求</p>
<p>在 request 中,你会得到带有请求参数的 PList。您可以在此处找到有关 PList 格式的信息:<a href="https://developer.apple.com/library/Mac/documentation/Darwin/Reference/ManPages/man5/plist.5.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/Mac/documentation/Darwin/Reference/ManPages/man5/plist.5.html</a> </p>
<p>响应将如下所示:</p>
<pre><code><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ICCID</key>
<string>8901 4104 2541 8901 7521</string>
<key>IMEI</key>
<string>01 266900 647352 2</string>
<key>PRODUCT</key>
<string>iPad2,2</string>
<key>UDID</key>
<string>591f30d41d0bd28597ad962491f1570ddbde4a8a</string>
<key>VERSION</key>
<string>8J2</string>
</dict>
</plist>
</code></pre></p>
<p style="font-size: 20px;">关于ios - 按下安装后从 iOS 配置文件返回什么类型的响应,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/24495647/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/24495647/
</a>
</p>
页:
[1]