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 | 31 |
Tags
- mac
- JPA
- UIButton
- window
- Code
- error
- Notification
- stack
- Session
- Archive
- github
- rxswift
- 웹뷰
- Xcode
- Realm
- 개발자
- iOS16
- Git
- darkmode
- 한글
- FLUTTER
- Firebase
- MacOS
- appstore
- IOS
- Apple
- Swift
- SwiftUI
- view
- geofencing
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Swift ) NSURLErrorDomain Code=-1103 - EEYatHo iOS 본문
iOS, Swift/Tip, Bug, Swift Error
Swift ) NSURLErrorDomain Code=-1103 - EEYatHo iOS
EEYatHo 2022. 11. 10. 13:49반응형
에러 배경설명
API 호출시 아래와 같은 에러가 나옴
- status code : 1103
- NSLocalizedDescription : 리소스가 최대 크기를 초과함
Solution
- iOS 13 이상에서 나타나는 버그이다.
- API 호출 시, request 의 httpMethod 를 GET 이라면, httpBody 를 비워야한다... 🫠
- body 를 통해 데이터를 전달하고 싶으면, API 가 POST 를 지원하도록 하고 사용한다.
- GET 을 유지하고 데이터를 전달하고 싶으면, header 나 url query를 사용한다.
Reference
- https://stackoverflow.com/questions/56955595/1103-error-domain-nsurlerrordomain-code-1103-resource-exceeds-maximum-size-i
- https://developer.apple.com/forums/thread/123348
'iOS, Swift > Tip, Bug, Swift Error' 카테고리의 다른 글
Swift ) Moya Interceptor, Plugin - EEYatHo iOS (0) | 2023.07.27 |
---|---|
Swift ) 앱 종료 감지, 지연 applicationWillTerminate - EEYatHo iOS (0) | 2023.06.30 |
Swift ) com.apple.CoreHaptics Code=-4805 - EEYatHo iOS (0) | 2022.10.28 |
iOS ) iOS16 present 버그 - EEYatHo iOS (2) | 2022.10.11 |
iOS ) Archive 후 Appstore Uplaod 시 에러 - EEYatHo iOS (0) | 2022.10.04 |
Comments