✔︎ 오늘의 정리
- [Error] The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.
- Moya와 RxSwift로 서버 통신하기
- Moya TimeInterval 적용하기
[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
'TIL' 카테고리의 다른 글
[SeSAC] November 27, 2023 (1) | 2023.11.28 |
---|---|
[SeSAC] November 20, 2023 (0) | 2023.11.21 |
[SeSAC] November 14, 2023 (6) | 2023.11.15 |
[SeSAC] November 13 , 2023 (0) | 2023.11.14 |
[SeSAC] November 10, 2023 (0) | 2023.11.10 |