Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- iOS 개발자
- Firebase
- TCA
- regex
- Navigation
- 모바일
- combine
- 개발
- tuist #xcodecloud #ios #ci/cd #swiftlint #firebase
- ObjC
- xcodecloud
- SWIFT
- Git
- SWIFTUI
- concurrency
- uikit
- IOS
- swiftdata
- Alamofire
- 정규표현식
- xcode
- ios18
- test
- Tuist
- UI
- iOS 13.0+
- network
- composablearchitecture
- github
- navigationsplitview
Archives
- Today
- Total
iOS 개발 기록
[Swift]네트워크 연결 시 Code=-1200 "SSL 오류가 발생했기 때문에 서버에 안전하게 연결할 수 없습니다. " 본문
728x90
API 호출을 했는데 이런 에러가 떳다.
<1> finished with error [-1200] Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made."
검색해보니 IOS10부터는 ATS(App Transport Security)가 강화되어 보안이 안전하지 않은 Https 트래픽을 비활성화 시킨다고 한다.
이거는 Info.plist에서 ATS setting을 수정함으로 해결할 수 있다.
프로젝트 파일의 Info.plist에서 Information Property List 옆의 +버튼을 눌러 App Transport Security Settings 항목을 추가한다.
후에 다음과 같이 설정한다 .
1.
Exception Domain - NSIncludesSubdomains 추가, Boolean type, value를 true 값으로 변경
Exception Domain - NSExceptionAllowsInsecureHTTPLoads 추가, Boolean type, value를 true 값으로 변경
호출할 API의 Https 주소입력
이와 같이 접속할 도메인을 예외처리한다.
2.
혹여나 안되면
App Transport Security Settings - Allow Arbitrary Loads 의 value 를 Yes로 변경
이렇게 변경한 후 시도하면 정상적으로 호출된 것을 확인할 수 있다.
'iOS > 에러' 카테고리의 다른 글
[SwiftData] iOS18이상에서 ModelContext.reset 호출로 인해 나타나는 런타임 오류 (TCA+SwiftData) (4) | 2024.10.02 |
---|---|
[Error] SDK is not supported by the compiler (0) | 2023.04.07 |
[__Error] Domain=NSURLErrorDomain Code=-999__ (1) | 2023.02.21 |
M1 맥북 CocoaPods 에러 (0) | 2022.03.28 |