原因
參考官方說明第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
}