티스토리 뷰
1.
guard let url = URL(string: baseURL + "/home") else {
throw APIError.invalidEndpoint
}
var request = URLRequest(url: url,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = HTTPType.post.rawValue
request.allHTTPHeaderFields = headers
GET 파라미터 넣을때는??
URLComponent로 첨부터 만들었어야 한다...
'macOS, iOS' 카테고리의 다른 글
[iOS] lazy variable (0) | 2021.02.10 |
---|---|
[Combine] cancellable을 저장하지 않아서 생기는 -999 error (0) | 2021.02.10 |
[iOS] App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. (0) | 2021.02.10 |
[iOS] 카카오 간편로그인 (0) | 2021.02.09 |
[iOS] 네이버지도 SDK 사용시 주의사항 (0) | 2021.02.09 |