I've constructed a Sling Model Exporter with very basic options [0], and it seems to be outputting:
Content-Type: application/json; charset=ISO-8859-1 This breaks the JSON RFC [1] as the default character encoding. It should be: Content-Type: application/json; charset=UTF-8 I'm hoping there's a solution to this, or that I'm missing something obvious. Any help is greatly appreciated. [0] https://gist.github.com/auniverseaway/c8b7b9013b5ecdd9c790253d194d17b6 [1] https://tools.ietf.org/html/rfc7159#section-8.1
