gpt4 book ai didi

iphone - iOS Box 应用程序是否响应自定义 URL 方案?

转载 作者:行者123 更新时间:2023-11-28 18:40:54 25 4
gpt4 key购买 nike

我希望能够直接从我自己的 native iOS 应用启动 native Box iOS 应用。例如,Dropbox 使用 db-api-1://,Facebook 使用 fb://,Square 使用 square:// 等.

iOS 的 Box 是否使用类似的 URL 方案?如果是这样,是否有文档概述它可以解析哪些参数?如果没有,是否有其他方法可以从我的应用启动它?

谢谢!

最佳答案

我检查了应用程序的 Info.plist:

<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.box.boxapp</string>
<key>CFBundleURLSchemes</key>
<array>
<string>box</string>
<string>box-login</string>
</array>
</dict>
<dict>
<key>CFBundleURLName</key>
<string>com.box.docinteraction.upload</string>
<key>CFBundleURLSchemes</key>
<array>
<string>box-upload-all</string>
<string>box-upload-all-direct</string>
</array>
</dict>
</array>

所以总共有4种url方案:box、box-login、box-upload-all和box-upload-all-direct。但是如果你没有任何文档就很难使用它们......

关于iphone - iOS Box 应用程序是否响应自定义 URL 方案?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11065920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com