✔︎ 오늘의 정리
- [Error] The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.
- Moya TimeInterval 적용하기
- Moya와 RxSwift로 서버 통신하기
- [RxSwift] Single
[Error] The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.
[Error] The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.
App Transport Security 이때, 오류에서 말하는 App Transport Security는 애플리케이션과 웹 사이트 사이에 통신 시 보안 기능 향상을 위한 기능으로, iOS9 이후로 도입되었다. 이는 모든 인터넷 통신 시 안전
dk308c.tistory.com
Moya와 RxSwift로 서버통신 하기
Observable은 정상적으로 작동하거나 오류를 뱉는다. 이건 불행하고 혼란스러운 일이지만, 우리가 함께 살아가야 할 일이다....
웃겨서 발췌해왔다.
인생에서도 실패하는 일이 있고 성공하는 일이 있듯이 네트워크 또한 그렇다.
불행하고 혼란스러운 일이지만, 우리는 에러와 함께 살아가야 한다... ...
무엇보다 조금 더 잘 살아가기 위해서는 에러를 잘 처리해 주어야 한다. :3
그래야 사용자도 편하고 추후 나도 편하다.
원래는 정리 안 하고 그냥 가보자고 .. 했었는데 도통 어케 동작하는지 모르겠더라
암튼 가보자.
RxSwift에서는 크게 세 가지 방법으로 ErrorHandling을 한다.
- catch
- 특정 값으로 Error 복구
- retry
- 재시도하기
- materialize / dematerialize
- Sequence를 제어하여 처리
어라? 이걸 써야 하는 줄 알았는데 Moya랑 결합하면 Single만으로도 해결이 가능한 거 같다 ㅋㅋ
pass pass
참고한 공식 문서는 아래쪽이당.
https://github.com/Moya/Moya/blob/master/docs/RxSwift.md
Moya의 RxSwift 부분만 가지고와졌는데 endpoint 부분도 했다 .. ..
Moya TimeInterval 적용하기
class APIManager {
static let shared = APIManager()
private init() { }
private let requestClosure = { (endpoint: Endpoint, done: MoyaProvider.RequestResultClosure) in
do {
var request: URLRequest = try endpoint.urlRequest()
request.timeoutInterval = 10
done(.success(request))
} catch {
done(.failure(MoyaError.underlying(error, nil)))
}
}
private lazy var provider = MoyaProvider<LSLPNetwork>(requestClosure: requestClosure)
... ...
}
처음에는 requestClousre 없이 적용했는데 아무리 간단한 로직이라고 해도 타임 인터벌은 적용해야 하지 않나?! 싶어서 추가했다.
설정을 따로 해 주지 않았을 때 시간은 default값이 있다고는 해도,,, default값이 1분이나 돼서 너무 길다! ㅠ,ㅠ
당장 인터넷 통신은 10초만 기다려도 너무 느리게 느껴지기에 timeInterval 기준을 10초로 잡고 이후에는 모두 오류로 처리하게끔 만들었다.
참고 자료
https://reactivex.io/documentation/ko/operators/catch.html
ReactiveX - Catch operator
RxKotlin implements the Catch operator in the same way as does RxJava. There are three distinct operators that provide this functionality: onErrorReturn instructs an Observable to emit a particular item when it encounters an error, and then terminate norma
reactivex.io
https://reactivex.io/documentation/ko/operators/retry.html
ReactiveX - Retry operator
Rx.rb has two versions of this operator: retry and retry_infinitely. retry takes a single optional parameter, a count of the number of times it should try resubscribing to and mirroring the source Observable when it encounters errors. If this count is exce
reactivex.io
[RxSwift] Single
[RxSwift] Single
앞으로 나올 시리즈 목록 Single (현재!) dispose -> 왜 누수가 발생하는지? observable / subject subject / relay subscribe / bind / drive publish / behavior Single Single은 RxSwift의 traits 중 하나로, `.success()`와 `failure()` 두
dk308c.tistory.com
dk아~~~~~!!! 뭘 까먹었나 했더니 예시를 까묵었던 거였음
어전지 글이 너무 허전하더라......
내일 일어나서 ㅜㅜ 수정해야겠다 요즘은 왜케 잠을 자는데도 피곤한 건지 사실 그렇게 만족! 할만큼 못 자니까 그런 건 당연한 건데 아니그래도안피곤햇음좋겟다고요~~~
암튼..
K 님의 폭풍 질문을 받고 어버버 ,, 한 내가 부끄러버서 공부를 했는데 여전히 잘? 아는지는? 모르겠다
내일 또 보고 코드 또 짜고 그래야겠음
진짜 많이 짜야 하는데 싶다........................................
죽여준다.진짜.진짜루.
삽질 ....... 그만하고싶다................................................................... q별 거 아닌데도 계속 이게 맞나? 저게 맞나? 하고 여러가지 해보다가 겨우겨우 아는 거 같다 , , , ,,
흠.
RxSwift - input/output pattern까지 이해하는 건 쉬웠는데 응용은 항상 힘든 것 같다 ,,
조만간 ,, 먼가 한다. 암튼 보여준다. ㄹㅇ.
'TIL' 카테고리의 다른 글
[SeSAC] November 30, 2023 (0) | 2023.12.01 |
---|---|
[SeSAC] November 27, 2023 (1) | 2023.11.28 |
[SeSAC] November 18, 2023 (0) | 2023.11.19 |
[SeSAC] November 14, 2023 (6) | 2023.11.15 |
[SeSAC] November 13 , 2023 (0) | 2023.11.14 |