Open
Description
With a request where there is a repeated parameter, necessary for specifying a value in between two values, only one of the two instances of the parameter gets sent. So a URI like:
"...line_items?filter=order.clientCreatedTime%3E1445006997000&filter=order.clientCreatedTime%3C1445611797000"
gets turned into
"...line_items?filter=order.clientCreatedTime%3C1445611797000"
The longer URI works fine in curl, but not here. Is this a bug or is there some other special way to specify the longer URI above?