Robert Gummesson
Results
1
issues of
Robert Gummesson
I need to make a call to an API which uses duplicate parameter keys like this: ``` /api/feed/index?instrumentId=1&instrumentId=2&instrumentId=3 ``` Normally, I'd use ```requestParameters``` with ```URLEncoding.queryString``` ```swift case requestParameters(parameters: [String: Any],...