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
{{ message }}
This repository has been archived by the owner on Oct 26, 2019. It is now read-only.
Map<String,Object> params = new HashMap<String, Object>();
params.put("single", "value"); // of course, this works now
params.put("multi", new String[] { "value1", "value2" }) ; // this doesn't work - want to pass array or Iterable
Response response = HTTP.post("http://someurl", params);
If this interface looks good, I would make PR for this issue
The text was updated successfully, but these errors were encountered:
Expected usage:
Map<String,Object> params = new HashMap<String, Object>();
params.put("single", "value"); // of course, this works now
params.put("multi", new String[] { "value1", "value2" }) ; // this doesn't work - want to pass array or Iterable
Response response = HTTP.post("http://someurl", params);
If this interface looks good, I would make PR for this issue
The text was updated successfully, but these errors were encountered: