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
The input field names for all API methods should be case insensitive.
It should already work for GET requests: unpackFieldParam uses strings.EqualFold
Must test PUT/POST for all endpoints
Also, use req.PostFormValue instead of req.FormValue in all PUT/POST-handlers
The problem is that (Post)FormValue is case-sensitive. Get around it by calling req.ParseForm and make a custom method that searches the req.PostForm map. See api_keys.go
The text was updated successfully, but these errors were encountered:
The input field names for all API methods should be case insensitive.
The text was updated successfully, but these errors were encountered: