按下安装后,iOSconfiguration文件返回什么types的响应

在设置configuration文件(从mobileconfig)期间,如果在苹果设备上按“安装”,返回什么? 它是XML,后值等?

我试图通过节点js提取设备的UDID等。

响应是POST请求

内部要求您获得PList与要求的参数。 你可以在这里find关于PList格式的信息: https : //developer.apple.com/library/Mac/documentation/Darwin/Reference/ManPages/man5/plist.5.html

答案将如下所示:

<!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>