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
According to RFC 2046, the Body of a multipart request must not be empty. However, http.Client's auto-redirect uses the same Content-Type, which violates this rule.
Of course we can avoid the error by using http.ErrUseLastResponse. But this default behavior results in an error with Rack, which is very widely used in Ruby. Rack does not provide a workaround.