如何从 .ipa 文件中提取自定义 URL 方案?
我正在尝试确定如何以编程方式从应用程序 .ipa
文件中提取或获取自定义 URL 方案。
这可能吗?
I am trying to determine how to extract or get programmatically the Custom URL Scheme from a application .ipa
file.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这是可能的。首先,解压缩 .ipa 文件。 (您可以使用 .zip 重命名它来执行此操作)。然后,在.ipa文件中,您会发现有一个Info.plist文件。您可以解析该文件,查找“CFBundleURLSchemes”,您将首先看到应用程序 ID,然后是自定义 URL(如果为应用程序定义了自定义 URL)。
Yes, this is possible. First, unzip the .ipa file. (you can rename it with .zip to do this). Then, inside the .ipa file, you will find there is a Info.plist file. You can parse that file, look for "CFBundleURLSchemes" and you will see first the app id followed by the Custom URL if one is defined for the app.
于是我打开 Mac 上的 iTunes,在我的应用程序库中查找“有问题的应用程序”。
我然后:
• 右键单击“有问题的应用程序”并选择“在 Finder 中显示”
• 然后复制“有问题的应用程序”.ipa 文件
• 然后我将 .ipa 文件重命名为以 .zip 结尾(也就是说,是的如果需要的话,它是一个.zip)
•然后我将其解压缩到一个文件夹
•我打开了有效负载文件夹
•我右键单击““有问题的应用程序”.app”并选择“显示包内容”
• 我在文本编辑器(例如免费的 TextWrangler.app)中打开了“Info.plist”文件
• 我搜索了“URL”并找到了以下内容:
然后我能够成功转到 Safari 并输入:app-in- Question:// 和 sslapp-in-question:// 并提示我是否要启动有问题的应用程序。
So I went to iTunes on my mac and looked in my App Library for the "APP IN QUESTION".
I then:
• Right-Clicked on the "APP IN QUESTION" app and selected “Show in Finder”
• then duplicated the "APP IN QUESTION" .ipa file
• Then I renamed the .ipa file to end in .zip instead (saying, yes make it a .zip if necessary)
• Then I unzipped it to a folder
• I opened the Payload Folder
• I right-clicked the “"APP IN QUESTION".app” and selected “Show Package Contents”
• I opened up the “Info.plist” file in a text editor like the free TextWrangler.app
• I searched for “URL” and found the following:
I was then able to successfully go to Safari and type in: app-in-question:// and sslapp-in-question:// and was prompted if I wanted to launch the App in Question.
是的,您可以直接解压 ipa(这只是一个 zip 文件),打开 < application >.app 并查找 info.plist。
如果应用程序支持,它应该包含任何自定义应用程序 URL 方案。
Yes, you can just unzip the ipa (this just a zip file), open the < application >.app and look for the info.plist.
It should contain any custom app URL schemes, if the app supports it.