Use RFC 4627 MIME type for JSON in examples

The MIME media type for JSON is application/json with default encoding is UTF-8, according to RFC 4627.
This commit is contained in:
bel2125 2019-01-08 21:57:45 +01:00
parent 6a88e23e53
commit bc37b0bf75

View File

@ -56,7 +56,7 @@ end
local response_body = json.stringify(response_table)
mg.write("HTTP/1.1 " .. http_status .. "\r\n")
mg.write("Content-Type: application/javascript; charset=UTF-8\r\n")
mg.write("Content-Type: application/json; charset=UTF-8\r\n")
mg.write("Content-Length: ".. #response_body .."\r\n")
mg.write("\r\n")
mg.write(response_body)