So the backend (not under my control) requires a query string like this:
http://example.com/?foo=5&foo=2&foo=11
But axios
uses a JS object to send the request params:
axios.get('http://example.com/', { foo: 5 });
And obviously an object can't have multiple fields with the same key.
How can I send a request with multiple fields with the same key?