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
Now serde_qs only support array like user_ids[0]=1&user_ids[1]=2 and user_ids[]=1&user_ids[]=2, but not support user_ids=1&user_ids=2 or user_ids=1,2. (Also mentioned in PR #83 )
It's very important when developing public API (for example, any API shared by openAPI). If an API only determined that a query parameter is an array, then there will be various client implementation with various array forms.
The text was updated successfully, but these errors were encountered:
Now serde_qs only support array like
user_ids[0]=1&user_ids[1]=2
anduser_ids[]=1&user_ids[]=2
, but not supportuser_ids=1&user_ids=2
oruser_ids=1,2
. (Also mentioned in PR #83 )It's very important when developing public API (for example, any API shared by openAPI). If an API only determined that a query parameter is an array, then there will be various client implementation with various array forms.
The text was updated successfully, but these errors were encountered: