-
Notifications
You must be signed in to change notification settings - Fork 670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support brotli encoding in HAR capture #739
Comments
Hi @mike10004 , |
Thanks! That looks like a good implementation -- I'm just waiting to see what the browsermob-proxy developer says about the factory idea. |
Hi folks, any traction/update on this? I think that PR looks good. 👍 |
It seems that development on the browsermob proxy has ceased. We have a fork, the browserup proxy that has merged brotli support. It should be a drop in replacement. https://github.com/browserup/browserup-proxy |
When capturing responses for a HAR, response content that is brotli-compressed (identified by a Content-Encoding header with value "br") is not decompressed. This results in the HAR containing base64-encoded content for those responses where it would be helpful to have plain text. Scripts and stylesheets are frequently served with brotli compression.
Currently, the ServerResponseCaptureFilter class only supports decompressing gzip-compressed response content in the
decompressContents()
method:It would be helpful to support decompression of brotli-compressed content in this class, and moreover, it would be helpful to support creation of a custom
ServerResponseCaptureFilter
in theHarCaptureFilter
constructor, perhaps by providing a factory as a constructor parameter.There are some other technically valid content encodings that are not supported by the current server response filter; for example, the Content-Encoding header might be "identity" or might specify multiple encodings. The factory approach would allow Browsermob users to implement their own response content manipulations as needed.
The library
org.brotli:dec:0.1.1
provides a pure-Java brotli decompression implementation that could be used for this purpose. I'd be glad to try out a patch to support brotli and submit a pull request for the functionality suggested here.(Tested with version 2.1.5.)
The text was updated successfully, but these errors were encountered: