gpt4 book ai didi

ios - canOpenUrl - 不允许此应用程序查询 scheme instagram

转载 作者:IT王子 更新时间:2023-10-29 07:31:34 25 4
gpt4 key购买 nike

我正在尝试将 Instagram 网址添加到我在 iOS9 中的应用程序,但我收到以下警告:

-canOpenURL: failed for URL: "instragram://media?id=MEDIA_ID" - error: "This app is not allowed to query for scheme instragram"

但是,我已将以下内容添加到我的 info.plist 中的 LSApplicationQueriesSchemes

<key>LSApplicationQueriesSchemes</key>
<array>
<string>instagram</string>
<string>instagram://media?id=MEDIA_ID</string>//this one seems to be the issue
</array>

非常感谢任何帮助?

编辑 1

这是我用来打开 instagram 的代码:

 NSURL * instagramURL = [NSURL URLWithString:@"instragram://media?id=MEDIA_ID"];//edit: note, to anyone copy pasting this code, please notice the typo OP has in the url, that being "instragram" instead of "instagram". This typo was discovered after this StackOverflow question was posted.
if ([[UIApplication sharedApplication] canOpenURL:instagramURL]) {
//do stuff
}
else{
NSLog(@"NO instgram found");
}

基于这个例子。

最佳答案

  1. 您的 LSApplicationQueriesSchemes 条目应该只有方案。第二个条目没有意义。

    <key>LSApplicationQueriesSchemes</key>
    <array>
    <string>instagram</string>
    </array>
  2. 阅读错误。您正试图打开方案中有拼写错误的 URL。在调用 canOpenURL: 时修复对 instragram 的引用。

关于ios - canOpenUrl - 不允许此应用程序查询 scheme instagram,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32870393/

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