How to upload video to vimeo through the Android app?

I am new to Android. I am making an application in which I want to upload a video to Vimeo using the Vimeo API from my application. I tried looking for hiking, but I can not find any explanation. In the Vimeo developers link, they provided only the names and parameters of the method, without examples.

Can someone lead me to a good tutorial or offer me some sample code to work with. Also I can not find the Vimeo libraries for Android. Please suggest some libraries compatible with Android. Any help in this case is noticeable.

Thank you in advance

+4
source share
3 answers

Just browse the links below and follow the instructions at https://developer.vimeo.com/apis/advanced/upload

[1] HTTP PUT for uploading a file in Java

[2] http://pastebin.com/79iSxzmR

Note. - I used the letters library at https://github.com/fernandezpablo85/scribe-java , which provides the methods used in the links above [1] and [2].

+2
source

To upload video to vimeo, you need to have an authenticated access token.

0
source

Please visit http://developer.vimeo.com/apis/simple and study the API available there to facilitate your task.

-1
source

All Articles