I\'m attempting to do a POST with the body being an InputStream with something like this:
@POST(\"/build\") @Headers(\"Content-Type: application/tar\") Respo
According to the Multipart section of http://square.github.io/retrofit/ you'll want to use TypedOutput instead of TypedInput. Following their examples for multipart uploads worked fine for me once I had implemented a TypedOutput class.