I added this header in my base request: "Accept-encoding", "gzip"
This now results in a MalformedJsonException urging me to use JsonReader.setLenient(true)
I've modified my code to this to support that:
JsonReader jsonReader = new JsonReader(new StringReader(myStringReader with json string));
jsonReader.setLenient(true);
JsonParser parser = new JsonParser();
JsonObject object = parser.parse(jsonReader).getAsJsonObject();
I'm still getting the same error, thoughts anyone?