My goal is to call a http service that returns a json to be parsed as an array of NewsModel objects.
I defined a struct like that
struct NewsModel: Decodable {
var id: Int
var title: String
var content: String
}
and wrote this method in Service.swift class:
func getNews(pageSize: Int, pageCount: Int, completion: @escaping ([NewsModel]?) -> ()) {
guard let url = URL(string: "\(Service.baseURLSSMService)/news?pageSize=\(pageSize)&pageCount=\(pageCount)") else {return}
var retVal = [NewsModel]()
// Create URLRequest
var request = URLRequest(url: url)
// Set headers and http method
request.httpMethod = "GET"
request.cachePolicy = URLRequest.CachePolicy.reloadIgnoringLocalCacheData
request.setValue("application/json; charset=utf-8", forHTTPHeaderField: "Content-Type")
let task = URLSession.shared.dataTask(with: request) { (data, response, error) in
guard let dataResponse = data,
error == nil else {
print(error?.localizedDescription ?? "Response Error")
completion(nil)
return }
do{
print("RESPONSE:\(response.debugDescription)")
retVal = try
JSONDecoder().decode([NewsModel].self, from: dataResponse)
completion(retVal)
} catch let parsingError {
print("Error", parsingError)
completion(nil)
}
}
task.resume()
}
I need to call this method from my HomeViewController. I used this code in my viewDidLoad:
Service.sharedInstance.getNews(pageSize: 10, pageCount: 1) { (news) in
// I need the first element of the news array
// I save it into a global variable
self.homeNews = news?.first
DispatchQueue.main.async {
if self.homeNews != nil {
self.myLabel.text = self.homeNews?.title
}
else {
self.myLabel.text = "No data received."
}
}
}
When I run the code, it always happens that the getNews function returns 0 bytes so nothing can be parsed by the JSONDecoder. This is the error message:
Error dataCorrupted(Swift.DecodingError.Context(codingPath: [], debugDescription: "The given data was not valid JSON.", underlyingError: Optional(Error Domain=NSCocoaErrorDomain Code=3840 "No value." UserInfo={NSDebugDescription=No value.})))
If I call it twice the last time proper values are received. What am I doing wrong? Because I guess I'm doing wrong something but I cannot get it.
EDIT 1:
This is a json sample:
[
{
"id": 2048,
"title": "title-sample-1",
"content": "content-sample-1"
},
{
"id": 2047,
"title": "title-sample-2",
"content": "content-sample-2"
}
]
EDIT 2:
Here is the response.debugDescription
RESPONSE:Optional(<NSHTTPURLResponse: 0x2830a1160> { URL: http://.../news?pageSize=1&pageCount=1 } { Status Code: 400, Headers {
Connection = (
close
);
Date = (
"Tue, 27 Nov 2018 15:38:38 GMT"
);
"Transfer-Encoding" = (
Identity
); } })