Skip to content

Instantly share code, notes, and snippets.

@danielgomezrico
Last active February 26, 2016 11:32
Show Gist options
  • Save danielgomezrico/7bd49f92da760139b4d1 to your computer and use it in GitHub Desktop.
Save danielgomezrico/7bd49f92da760139b4d1 to your computer and use it in GitHub Desktop.
Android / Retrofit - how to upload a file without multipart (as binary) for Kotlin
interface UploadService {
@Headers("Content-Type: image/jpeg")
@POST("/files")
fun uploadFile(@Body file: TypedFile): Observable<UploadedFile>
}
@sreereddymenon
Copy link

Hai. Lovely blog! It would be better if you can add link of blogpost in gist file description. it will be very useful

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment