I'm trying to retrieve some JSON data from a URL, however it is returning 0 bytes every time in the data. I've checked several different SO posts, and none seem to match the exact problem I am having as the server I am getting data from indeed uses HTTPS with TLS 1.2. So I don't think there's anything I need to add to my info.plist, though I could be wrong.
Here is my code:
var tournaments: [Tournament] = []
/// Base API URL
let baseURL: String = "https://www.burningmeter.com/tournaments.json?page=1"
// ...
func retrieveAPIData() {
// Build the API string
var request: URLRequest = URLRequest(url: URL(string: baseURL)!)
request.cachePolicy = URLRequest.CachePolicy.reloadIgnoringLocalCacheData
request.addValue("application/json; charset=utf-8", forHTTPHeaderField: "Content-Type")
request.httpMethod = "GET"
// Request the data
let session: URLSession = URLSession.shared
let task = session.dataTask(with: request) { (data, response, error) in
// Did we get an error?
guard error == nil else {
print(error!)
return
}
guard let json = data else {
print("No data")
return
}
guard json.count == 0 else {
print("Zero bytes of data")
return
}
let jsonDecoder = JSONDecoder()
let tournaments = try! jsonDecoder.decode(TournamentPage.self, from: json)
// We got our values, let's go
self.tournaments = tournaments.tournaments
}
task.resume()
}
Tournament structure:
struct Tournament : Codable {
let id: Int
let name: String
let game_id: Int
let game_iteration_id: Int
let state: Int
let starts_at: String
let creator_id: Int
let stream_url: String
let entrant_count: Int
let prereg_count: Int
let path: String
}
struct TournamentPage : Codable {
let page: Int?
let results_per_page: String
let tournament_count: Int
let tournaments: [Tournament]
}
You have a mistake in
guard
statement. You wrote==
instead of!=
injson.count == 0
. It should be like in the code below:Tested in the playground with the following code (Removed Encoder):
Printed result:
JSON result:
Received length is 8031