.mobileprovision 的 MIME 类型是什么
.mobileprovision 文件类型的正确 MIME 类型 (IIS) 是什么?我的想法正确吗?如果我必须将每个人的设备连接到 mac 开发机器来安装 .mobileprovision 文件,那么它就违背了无线临时分发方法的目的。
What is the correct MIME type (IIS) for a .mobileprovision file type? Am I thinking of this the right way? If I have to connect everybody's device to the mac dev machine to install the .mobileprovision file, it kind of defeats the purpose of the wireless ad hoc distribution method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果没有特定的 MIME-Type,您只需使用
application/octet-stream
即可。无论如何请注意,AdHoc 分发方法(无线分发)不需要您提供 .mobileprovision 文件。至少就我而言,我已经进行了多个 OTA 发行版,并且从未向用户提供 .mobileprovision 文件。
在 Xcode 中,只需选择“构建和存档”,然后将构建存档到“管理器”窗口的“存档应用程序”中后,只需使用“共享...”按钮并选择“为企业分发” ”。
它将创建一个 .plist 文件和 .ipa 文件。然后将所有内容放在您的服务器上,并在您的网页上创建一个指向“itms-services://?action=download-manifest&url=http://url.to.your/app.plist”的链接。当用户从 iPhone 上点击链接时,iOS 将提示您通过 OTA 安装您的应用程序。
注意:如果您想了解更多信息,请在网络或 SO 中搜索“OTA Distribution”,有关于此内容的详细文章,包括屏幕截图和示例。
If there is no specific MIME-Type, you may simply use
application/octet-stream
it will work.Note anyway that the AdHoc distribution method (Over The Air distribution) does not need you to provide a .mobileprovision file. At least for my case, I already did multiple OTA distributions and never provided the users a .mobileprovision file.
From Xcode, simply choose "Build & Archive", then once the build is archived in your "Archived Applications" in your Organizer window, simply use the "Share…" button and choose "Distribute for Enterprise".
It will create a .plist file and the .ipa file. Then put all that on your server and create a link to "itms-services://?action=download-manifest&url=http://url.to.your/app.plist" on your web page. When users will follow the link from their iPhone, iOS will prompt for OTA installation of your app.
Note: If you want more info, sSearch the web or SO for "OTA Distribution", there are detailed articles about this including screenshots and examples.
Mime(多用途互联网邮件扩展)类型
.mobileprovision 和 .ipa
.plist
application/octet-stream
It是一个二进制文件。通用的http字节流。通常它是一个应用程序或必须在应用程序中打开的文档。
Mime(multi purpose Internet mail extensions) types
.mobileprovision and .ipa
.plist
application/octet-stream
It is a binary file.A generic http byte streaming.Typically it will be an application or document which must be opened in application.