-
Notifications
You must be signed in to change notification settings - Fork 713
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
Implement easier adding of multi-value http headers #432
Comments
Hey @DazKins is anyone already working on this? If not, I'd be glad if you assign this to me |
Hey, I don't have permission to assign, but no I don't believe anyone is working on this |
Hey @moorereason, could you assign this to me? |
…ader Implement easier adding of multiple value HTTP Header with function `SetMultiValueHeaders`
There are currently 2
SetHeaders
functions with the following types:It might be convenient to add a 3rd:
As listed in RFC2616 HTTP headers can have multiple values: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
This would also be convenient as the inbuilt golang
http.Header
type is defined asmap[string][]string
so would allow for direct usage of that type:The text was updated successfully, but these errors were encountered: