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
@samthebest I'd be happy to pair with you to explore this.
FormParameter is part of naive-http's domain (although not as central as Request, Response, etc), Map[String, String] is not.
Map[String, String] may very well be a fine underlying encoding, it's a terrible representation/api as it has nothing to do with form parameters. The domain of http deserves to be first class (especially in a library about http !), whilst also being careful not to gatekeep / be rigid / drown in NIH.
cc @stacycurl
I have to construct the query params my self, if I use
formParameters
on a request it doesn't seem to work (I get 404).Also
FormParameter
seems like a fairly redundant type, could just useMap[String, String]
The text was updated successfully, but these errors were encountered: