Brotli compression #6354
Unanswered
NicoDevriendt
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I haven't tested it yet, but does the following work? services.AddConferenceClient()
.ConfigureHttpClient(client => ...)
.ConfigurePrimaryHttpMessageHandler(config => new HttpClientHandler
{
AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.Brotli
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello
I try to connect in a c# application with Strawberryshake a graphql server that compress the response
when there is a lot of data to return.
With small responses there is no problem, i receive json with my answers on my graphql query
But with big response, there is a brotli compression and StrawberryShake goes in error because there is no json returned.
How is it possible tot handle qraphql queries with brottli compression and StrawberryShake ?
I'm on the version of 12.15 of StrawberryShake
Thanks
Nico
Beta Was this translation helpful? Give feedback.
All reactions