My Json looks like this:
data = { "key":"value",
"key":"value",
"key":"value"}
I've been trying to use Swift4 Codable protocols for parsing JSON and have used it to great effect but for the life of me I cannot break this structure. The outer data = makes it invalid JSON but I can't seem to find any way to modify the data before I attempt to pass it to the JSONDecoder.
Is there any way I can just receive that data as a string so I can drop the outermost characters and just parse the remaining JSON object?