ios – Safari扩展上的App Transport Security

前端之家收集整理的这篇文章主要介绍了ios – Safari扩展上的App Transport Security前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的应用扩展程序需要从许多网站打开URL.我做如下:
for (NSExtensionItem *item in self.extensionContext.inputItems) {

    for (NSItemProvider *itemProvider in item.attachments) {

        if ([itemProvider hasItemConformingToTypeIdentifier:(NSString *)kUTTypeURL]) {

            [itemProvider loadItemForTypeIdentifier:(NSString *)kUTTypeURL options:nil completionHandler:^(NSURL *url,NSError *error) {
                NSLog(@"URL: %@",url);

我可以获取URL,但此时我收到此错误

App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app’s Info.plist file.

我试图完全关闭ATS,

<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key> <true/>
    </dict>

但它不起作用,我无法在NSExceptionDomain中列出网站.我试过模拟器和设备.有人可以帮忙吗?

编辑

我认为导致问题的代码是这样的:

NSString* htmlString = [NSString stringWithContentsOfURL: url encoding:NSUTF8StringEncoding]

我在url log之后使用这行代码将html作为纯文本.

解决方法

您是将NSAppTransportSecurity字典添加到应用程序扩展的Info.plist文件中,还是仅添加到父应用程序的Info.plist文件中?因为如果扩展正在发出请求,则异常需要在扩展的Info.plist文件中.

如果这没有帮助,请尝试直接使用NSURLConnection,看看它是否有任何区别.我怀疑它会,但它可能值得一试.

原文链接:https://www.f2er.com/iOS/334282.html

猜你在找的iOS相关文章