0
私はScheduleOSUpdateScan要求を送信しようとしていますが、ErrorChainを取得しようとしています。 何が悪いと思いますか?iOS ScheduleOSUpdateScan MDMコマンド
これが要求です:
<plist version="1.0">
<dict>
<key>Command</key>
<dict>
<key>RequestType</key>
<string>ScheduleOSUpdateScan</string>
<key>Force</key>
<true/>
</dict>
</dict>
</plist>
これはデバイスの応答です:アップルMDMドキュメントを1として
<plist version="1.0">
<dict>
<key>CommandUUID</key>
<string>someCommandUUID</string>
<key>ErrorChain</key>
<array>
<dict>
<key>ErrorCode</key>
<integer>12021</integer>
<key>ErrorDomain</key>
<string>MCMDMErrorDomain</string>
<key>LocalizedDescription</key>
<string>“ScheduleOSUpdateScan” is not a valid request type. </string>
<key>USEnglishDescription</key>
<string>“ScheduleOSUpdateScan” is not a valid request type. </string>
</dict>
</array>
<key>Status</key>
<string>Error</string>
<key>UDID</key>
<string>someUDID</string>
</dict>
</plist>
要求です。 コマンド RequestType ScheduleOSUpdateScan フォース CommandUUID は をsomeUUID –