I want to disable GZipContent for a Google Cloud Endpoints class so that a POST can work on the local development server.
The latest GPE release generates this endpoint
You can use:
builder.setGoogleClientRequestInitializer(new TictactoeRequestInitializer() { protected void initializeTictactoeRequest(TictactoeRequest> request) { request.setDisableGZipContent(true); } });
Replace TictactoeRequest with the appropriate class for your application.
TictactoeRequest