Could you please add a MultipartBody.Builder#addFormDataPart overload that accepts a MediaType. Some web frameworks will outright ignore parts without content type. Without it we have to resort to this beast.
.addPart(Headers.of("Content-Disposition", "form-data; name=\"title\""), RequestBody.create("Square Logo", MediaType.get("text/plain")))
Reference: 26949cf#r36218386