-
-
Notifications
You must be signed in to change notification settings - Fork 240
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
Force compression to client don't work #83
Comments
Hi @zhaoyou, sorry I haven't gotten back to you yet. Yes, this is a hole in the module currently, that you cannot override the way the module checks if the client is capable of receiving compressed content, and I think it would be good to add it. In the meantime, I would like the offer the following work-around for your use-case: app.get('/device', auth_identity, always_compress, compression(), device)
function always_compress (req, res, next) {
req.headers['accept-encoding'] = 'gzip'
next()
} |
@dougwilson Thanks 👍 for your explanation and suggestion. |
Allowing the option to choose a default encoder can solve this issue. |
I want compression response body to client always , Whether the client have any Settings。My Client App is poor what can't set any request header, but can handle compression data.
Why ? thanks.
The text was updated successfully, but these errors were encountered: