For some reasons I need to make a request string manually:
request += "?"
for (key, value) in updatedParameters
{
request.append("\(key)=\(value)&")
}
and then pass it to Alamofire.upload. It works fine unless value contains cyrillic letters. Is there any way to encode request string so the request will work?