嗨,我正在为 IOS MobileDeviceManagament 使用 JavaPNS。到现在为止的步骤 1)我在 iPad 上安装了 mobileconfig 文件。2)我在Windows系统上设置JavaPNS项目。3)我可以使用 Push.alert(...),Push.Sound(...),Push.Badge() 发送警报、声音和徽章 4)我的意图是禁用相机。使用以下代码为了它。
RestrictionsPayload rsp= new RestrictionsPayload(1, "raja", "com25.restrictions", "allowYouTube") ; 上面的类提供了一些功能,比如启用相机、youtube..等。所以我正在使用这个类。rsp.setAllowCamera(false); rsp.setAllowYouTube(false); 我将此方法添加到 rsp 对象。Push.payload(rsp,"PushNotification.p12", "aadmin123(", false, "36........6");
使用上述语句,我将 rsp 对象发送到 IOS 设备。
这里 RestrictionsPayload 类用于启用相机和 youtube。这两种方法用于启用相机和 youtube。服务器日志未显示任何错误。
谁能指导我。