iphone / ipad 企业应用程序分发
我有企业应用程序分发证书,可以将应用程序分发给组织中的某些员工。
下面介绍如何删除该分发证书中的特定设备 ID。
例如,考虑一个人使用设备逃离组织,这意味着您将如何限制用户访问该特定设备中的应用程序。
任何想法...
i have enterprise application distribution certificate to distribute application to certain employees in an organization.
Here how to delete a particular device id in that distribution certificate.
for example consider a person is run away from the organization with device means here how'll you restrict user to access the application in that particular device.
ANy idea...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实施启动检查,应用程序将联系服务器,该服务器保存已知擅离职守的设备的 UDID 黑名单。应用程序将通过传输其主机设备的 UDID 来请求服务器在启动时允许运行。
这当然会强制您的设备在线(或以其他方式能够联系服务器)才能运行。如果在所有情况下都无法做到这一点,则运行许可可能会在一段时间内有效。例如,应用程序将在上次授予许可后启动三天,然后需要新的许可。
You could implement a startup check where the app will contact a server which holds a blacklist of UDIDs of devices known to be AWOL. The app would ask the server for permission to run upon startup by transmitting the UDID of its host device.
This will of course force your devices to be online (or otherwise able to contact the server) in order to run. If this is not possible under all circumstances, the permission to run could be valid for some time. For example, the app would start up for three days after the permission was last granted before requiring a new permit.