zoukankan      html  css  js  c++  java
  • iOS 9 添加白名单

    iOS9的URL Scheme 需要设置白名单,否则无法打开,步骤如下:

    首先更新第三方库的sdk

    1.找到项目的info.plist文件 右击 选择 open as source code

    2.添加如下配置:(针对qq,微信,微博,其他的URL Scheme 需要自己去找)

    <key>LSApplicationQueriesSchemes</key>
        <array>
            <string>sinaweibohd</string>
            <string>sinaweibo</string>
            <string>weibosdk</string>
            <string>weibosdk2.5</string>
            <string>wechat</string>
            <string>weixin</string>
            <string>mqq</string>
            <string>mqzone</string>
            <string>wtloginmqq2</string>
            <string>mqqopensdkapiV3</string>
            <string>mqqopensdkapiV2</string>
            <string>mqqwpa</string>
            <string>mqqOpensdkSSoLogin</string>
        </array>
        <key>NSAppTransportSecurity</key>
        <dict>
            <key>NSExceptionDomains</key>
            <dict>
                <key>sina.cn</key>
                <dict>
                    <key>NSIncludesSubdomains</key>
                    <true/>
                    <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
                    <false/>
                </dict>
                <key>weibo.cn</key>
                <dict>
                    <key>NSIncludesSubdomains</key>
                    <true/>
                    <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
                    <false/>
                </dict>
                <key>weibo.com</key>
                <dict>
                    <key>NSIncludesSubdomains</key>
                    <true/>
                    <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
                    <true/>
                    <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
                    <false/>
                </dict>
            </dict>
        </dict>

    原文
  • 相关阅读:
    替换URL传递的参数
    执行SQl语句得到xml结果集
    table中文本太长换行
    org.xml.sax.SAXNotRecognizedException
    WAMP+CMSeasy快速搭建学校网站
    推荐几个web前台开发的小工具
    来园子里注册啦
    C++ Virtual的背后
    Games101观后补充笔记
    Lua语法入门
  • 原文地址:https://www.cnblogs.com/shiguangji728/p/5163243.html
Copyright © 2011-2022 走看看