You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should be using response.raw instead of response.content in the proxy view. This would probably relieve us of the need to declare content-encoding and content-length as excluded headers.
The raw will come through as a urllib3 HTTPResponse object. We can use this fact to even do things like return a streaming response when appropriate (maybe for another day though).
The text was updated successfully, but these errors were encountered:
We should be using
response.raw
instead ofresponse.content
in the proxy view. This would probably relieve us of the need to declare content-encoding and content-length as excluded headers.The
raw
will come through as a urllib3 HTTPResponse object. We can use this fact to even do things like return a streaming response when appropriate (maybe for another day though).The text was updated successfully, but these errors were encountered: