swift 使用 GET 網路請求回應錯誤-1103 Error Domain=NSURLErrorDomain Code=-1103 “resource exceeds maximum size” iOS 13

原因

參考官方說明第46025234

https://developer.apple.com/documentation/ios-ipados-release-notes/ios-13-release-notes

All URLSessionTask instances with a GET HTTP method that contain a body now produce the error NSURLErrorDataLengthExceedsMaximum. (46025234)

若使用 GET 不需要傳入 body 修改 code

if(httpMethod == "POST"){
            request.httpBody = postData as! Data
        }

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *