Skip to content

Instantly share code, notes, and snippets.

View landlight's full-sized avatar
🤡
Clowning

Chit Khine landlight

🤡
Clowning
  • NFQ Thailand
  • Bangkok, Thailand
View GitHub Profile
@landlight
landlight / Video Upload
Created February 21, 2017 05:32
Video Upload
public interface SmileVideoAPI {
@GET("video/1")
Call<VideoUrl> getPath();
@Multipart
@POST("video/upload")
Call<ResponseBody> uploadVideo(@Part("description") RequestBody description, @Part MultipartBody.Part video);
}