ipad/iphone,安全应用程序分发
我开发了一个ipad静态演示应用程序,在这里我不想将其提交到应用程序商店。 这个应用程序的用户甚至不超过 100。
这里我的要求是,如果用户连接到互联网意味着应用程序应该访问苹果开发者网站,并且应该检查连接的设备 ID 是否添加到当前的配置文件中。如果设备 ID 存在,则意味着它应该进一步执行应用程序,否则它不应该执行。
有什么方法可以实现这个...
苹果是否提供任何API来执行这些事情...?..
有什么建议吗..?
i have developed a ipad static presentation application, here i doesnt want to submit it to the app store.
this app users not even exceed 100.
here my requirement is if user is connected to the internet means app should hit the apple developer site and it should check whether the connected device id is added to current provisioning profile. if device id is there means it should execute the application further else it should not execute.
is there any way to implement this...
is apple is providing any API's to perform these things...?..
any suggestion pls..?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你提出的方法是不可能的,但接近。
当您签署临时分发的应用程序时,您可以使用配置文件对其进行签名。此配置文件包含应用程序将在其上运行的设备的 ID。它甚至不会安装在其他设备上。
看看如何进行临时分发。对于少于 100 台设备,完全可以完成您的需求。然后,该应用程序可以通过无线方式(从网页)分发到授权设备。
The method you propose is not possible, but close.
When you sign the application for ad-hoc distribution, you sign it with a provisioning profile. This profile contains the ID:s of the devices that the application will run on. It will not even install on other devices.
Take a look at how to do ad-hoc distribution. For less than 100 devices, it is possible to accomplish exactly what you need. The app can then be distributed wirelessly (from a web page) to the authorized devices.