We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
It would be nice to have SetMultiValueFormData which should work in the same way as SetMultiValueQueryParams but for FormData:
SetMultiValueFormData
SetMultiValueQueryParams
FormData
q, err := query.Values(struct {}{}) for p, v := range q { for _, pv := range v { client.FormData.Add(p, pv) } }
q, err := query.Values(struct {}{}) client.SetMultiValueFormData(q)
The text was updated successfully, but these errors were encountered:
Will take care, thanks!
Sorry, something went wrong.
#33 SetMultiValueFormData method added
b9a489d
Closing this issue, PR #38 will be merged.
jeevatkm
No branches or pull requests
Hello,
It would be nice to have
SetMultiValueFormData
which should work in the same way asSetMultiValueQueryParams
but forFormData
:The text was updated successfully, but these errors were encountered: