-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[iOS] 서버에 대한 모든 것 (Feat. Alamofire) #39
Comments
면접 끝나고 해야징 ~~꼭 .. 난 왤케 감자일까? ㅜ |
JSON
|
HTTP 메서드
HTTP 응답
200번대 : 성공 200 : 요청 성공 400: 클라이언트의 요청이 유효하지 않은 상태 500: 서버에 오류가 발생하여 요청을 수행할 수 없는 경우 |
API 명세서에서 주의깊게 봐야할 것 들
|
서버통신 흐름 정리-클라이언트가 서버에게 특정 URI로 요청을 하면 JSON형태로 데이터를 받는 것
Encode: 암호화하는 과정 - Swift 코드를 JSON 형식으로 바꾸는 과정Decode: 해독하는 과정 : JSON을 Swift로 바꾸는 과정인코딩을 통해 스위프트코드를 json으로 변환 -> 요청서를 가지고 서버에 요청을 보냄 -> JSON 데이터로 응답을 보내줌 -> 디코딩을 통해 JSON 데이터를 Swift로 변환 |
CocoaPods ; iOS에서 사용되는 의존성 관리 도구 중 하나
Carthage : 빌드 시 라이브러리를 프로잭트와 통합하지 않고 관리빠른 빌드 속도, 동적라이브러리 |
서버통신 순서 !
|
2단계 사전 준비
애플 측에서는 앱 자체의 보안성을 위해서 ATS 라는 정책을 통해 기본적으로 https 통신을 하도록 유도하고 있습니다. 그래서 http 서버와 통신을 하려고 하면 에러가 발생합니다.
|
3단계 서버통신
작성한 서버통신 코드를 뷰컨에서 호출
struct LoginResponse: Codable {
let status: Int
let success: Bool?
let message: String
let data: LoginData?
}
struct LoginData: Codable {
let name: String
let email: String
}
### 데이터 모델을 encode하거나 decode 하려면 프로토콜 채택이 필요합니다. 바로 , Encodable, Decodable 프로토콜 !
### Codable이라는 프로토콜을 사용해서 한꺼번에 ! 인코더블 과 디코더블의 묶음 !
- `public typealias Codable= Decodable & Encodable` 데이터 부분은 왜 옵셔널일까 ??
준비 완료 |
Request. Response
싱글톤 ?
let body: Parameters = [
"name": name,
"email": email,
"password": password
] : 요청 바디 !!
let dataRequest = AF.request(url, method: .post, parameters: body, encoding: JSONEncoding.defalut, headers: header)
dataRequest.responseData { response in
switch response.result {
case .success:
guard let statusCode = response.response?.statusCode else { return }
guard let value = response.value else { return }
let networkResult = self.judgeStatus(by: statusCode, value)
completion(networkResult)
case .failure:
completion(.networkFail)
}
}
성공인 경우로 가보자
private func judgeStatus(by statusCode: Int, _ data: Data) -> NetworkResult<Any> {
switch statusCode {
case 200: return isVaildData(data: data)
case 400: return .pathErr
case 500: return .serverErr
default: return .networkFail
}
} : 서버통신 자체는 성공일지라도 응답 실패로 우리가 원하는 데이터를 받지 못한 상태일 때를 분기처리하기 위한 메서드
private func isVaildData(data: Data) -> NetworkResult<Any> {
let decoder = JSONDecoder()
guard let decodedData = try? decoder.decode(LoginResponse.self, from: data)
else { return .pathErr }
return .success(decodedData.data as Any)
} : 통신이 성공하고 원하는 데이터가 올바르게 들어왔을 때 데이터 처리를 위한 함수 .
|
수고했어잉 ~ |
네트워크
데이터를 서버에 요청하고 받기
클라이언트와 서버 관계
요청과 응답 ! -> 간단하면서도 중요한 개념
휴대폰에서 어떤 액션을 취했을 때 서버에게 원하는 데이터를 요청을 하고,
서버에서는 요청에 따른 적절한 응답을 다시 해준다 !
클라이언트 : 앱에서의 어떠한 동작을 처리하기 위해 서버에 데이터에 관련 처리를 요청함
서버 : 클라이언트의 요청에 대해 응답
프로토콜 (HTTP프로토콜) : 일련의 규칙, 정해진 형태
=> 클라와 서버는 서로 알아들을 수 있는 규칙을 만들어서 요청,응답을 수행하게 됩니다.
클라이언트의 역할은 무엇일까요??
프로토콜
HTTP: Hypertext Transfer Protocol
REST API 사용
Representational State Transfer
3가지 요소
The text was updated successfully, but these errors were encountered: