I need to post some data to a server in this format
dates: [{...},{...},{...}]
So far I have done this
for(RepeatEventItem item : selected_dates){
pEntity.addPart("dates[]", new StringBody(mapper.writeValueAsString(item)));
}
and the resulting format is this
["{...}","{...}"]
how can I get rid of the quotes as the server is expecting JSONObjects in the array not strings