I need to send a multipart/form-data HTTP POST request with a file and some extra data. The files might be kind of big, so I cannot read them with NSData because it will trigger a memory issue, so the file has to be read with NSInputStream.
I've been doing some research and found a solution for Objective-C: https://github.com/pyke369/PKMultipartInputStream
Is there something similar for Swift?