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
Is your feature request related to a problem? Please describe.
http forced to add header with ; charset=utf-8 when doing request and I want my header without it.
Describe the solution you'd like
Need to change the order of http.Request(). First add the body then add the header.
Describe alternatives you've considered
No
Additional context
This is chopper-7.0.6 that add header first then the body
I see. You want to remove the charset when the body is in bytes (List<int>), but in cases where the payload is text, it should contain charset=utf-8, correct?
Is your feature request related to a problem? Please describe.
http forced to add header with
; charset=utf-8
when doing request and I want my header without it.Describe the solution you'd like
Need to change the order of http.Request(). First add the body then add the header.
Describe alternatives you've considered
No
Additional context
Before
After
The text was updated successfully, but these errors were encountered: