1

I have added the required values into my .plist file as shown in the screenshot below

Xcode Screenshot

but I still get this error:

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.

What else could be causing this issue?

enter image description here

All of the errors below are displayed

{ URL: http://example.com } 2015-10-21 00:20:30.694 SwiftSignatureSystem[1226:36450] 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. fatal error: 'try!' expression unexpectedly raised an error: Error Domain=NSURLErrorDomain Code=-1022 "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection." UserInfo={NSUnderlyingError=0x7fd33c8951e0 {Error Domain=kCFErrorDomainCFNetwork Code=-1022 "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection." UserInfo={NSErrorFailingURLStringKey=http://example.com, NSLocalizedDescription=The resource could not be loaded because the App Transport Security policy requires the use of a secure connection., NSErrorFailingURLKey=http://example.com}}, NSErrorFailingURLStringKey=http://example.com, NSErrorFailingURLKey=http://example.com, NSLocalizedDescription=The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.}: file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.59/src/swift/stdlib/public/core/ErrorType.swift, line 50

Manos Nikolaidis
  • 21,608
  • 12
  • 74
  • 82
s TAKUYA
  • 47
  • 3

1 Answers1

0

It seems a mixed content issue.

Mixed content in Chrome and IE

If your user agent loads the page under HTTPS, it should refuse to load unsecure items.

Community
  • 1
  • 1
vtortola
  • 34,709
  • 29
  • 161
  • 263