美文网首页iOS学习
This app is not allowed to query

This app is not allowed to query

作者: 疯狂的向日葵 | 来源:发表于2016-03-02 08:48 被阅读4310次

    Xcode报错:

    -canOpenURL: failed for URL: "weixin://app/*************/" - error: "This app is not allowed to query for scheme weixin"

    iOS 9系统策略更新,限制了http协议的访问,此外应用需要在“Info.plist”中将要使用的URL Schemes列为白名单,才可正常检查其他应用是否安装。

    受此影响,当你的应用在iOS 9中需要使用微信SDK的相关能力(分享、收藏、支付、登录等)时,需要在“Info.plist”里配置

        <key>NSAppTransportSecurity</key>
        <dict>
            <key>NSAllowsArbitraryLoads</key>
            <true/>
        </dict>
        <key>LSApplicationQueriesSchemes</key>
        <array>
            <string>weixin</string>
        </array>
    
    未命名.png

    相关文章

      网友评论

        本文标题:This app is not allowed to query

        本文链接:https://www.haomeiwen.com/subject/qzlnkttx.html