从 PHP 中的 ipa 中提取嵌入的配置文件

发布于 2024-11-26 02:28:05 字数 112 浏览 2 评论 0 原文

我想创建一个像 testflight 这样的网络服务器。我只想上传 ipa 文件并获取配置文件。因此用户不需要添加配置文件。有解决办法吗?

另外,testflight 如何在设备中安装应用程序?

I want to create a web server like testflight. I want to upload only the ipa file and fetch the provision profile. So the user don't need to add the provision profile. Is there a solution for this?

Also, how is testflight working to install an application in a device?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

给妤﹃绝世温柔 2024-12-03 02:28:05

对于任何想要“真实”答案的人,您可以使用 PHP 提取 IPA(zip),并且可以在 Payload 文件夹中的 XXXX.app 文件夹中找到该规定

$zip = new ZipArchive;
    if ($zip->open('FirstApp.ipa') === TRUE) {
        $zip->extractTo('/dir/');
        $zip->close();
    }

For anyone who wants a "real" answer you would use PHP to extract the IPA(zip) and the provision is available in the XXXX.app folder in the Payload folder

$zip = new ZipArchive;
    if ($zip->open('FirstApp.ipa') === TRUE) {
        $zip->extractTo('/dir/');
        $zip->close();
    }
戴着白色围巾的女孩 2024-12-03 02:28:05

实际上,您的临时发行版中的嵌入式配置文件将在 OTA 下载时自动安装在用户的设备上。查看 Apple 文档,了解分发适用于 iOS 4 设备的企业应用无线安装应用程序部分。对于完整的示例,请阅读[已删除]

编辑:
上面的链接已损坏,似乎已移至:http://aaronparecki.com/articles/2011/01/21/1/how-to-distribute-your-ios-apps-over-the-air

也是从 iOS 7.0 开始。 3、plist(不是 ipa)必须托管在 ssl 安全站点 (https) 上。

Actually the embedded profile in your ad-hoc distribution will install on the user's device automatically while downloaded OTA. Check Apples docs on Distributing Enterprise Apps for iOS 4 Devices, section Installing Apps Wirelessly. For a full sample read [deleted]

Edit:
The link above was broken, and seems to have moved to: http://aaronparecki.com/articles/2011/01/21/1/how-to-distribute-your-ios-apps-over-the-air

Also since iOS 7.0.3, the plist (not the ipa) must be hosted on a ssl secured site (https).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文