This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Description
The QueryString class is an instance of Hash so at the data-structure level can only support one parameter with the same name. Both HTTP and OAuth place no restrictions on multiple query parameters with the same name. Some APIs require it as a feature.
Section 3.4.1.3.2 describes how multiple parameters of the same name must be handled. They should all be included in the base string and should be sorted by the byte order of their values.
Example use-case:
oauth.get(
'http://www.myservice.com/api/method/?ids[]=1&ids[]=2',
success,
failure
);