Is there a way to get the direct download link of a vimeo video using PHP vimeo API?
I tried this stackoverflow answer, but moogaloop's links don't work. It has be more than a year since Vimeo updated their API.
Is there any way to get a direct link/downloading videos through API/PHP.
NOTE: The Vimeo API is a REST API. REST, or representational state transfer, is an architectural style or design philosophy for interacting with online resources (like videos) using standard HTTP methods, including GET, POST, and PATCH. We built the Vimeo API to adhere to REST principles and practices.
Vimeo members have the option to enable their videos for download. But if you have a Basic or Free membership, your viewers will not be able to download your videos; if you upgrade your account, the option for enabling downloads will be automatically turned on.
The Vimeo API is an automated programming interface which gives its users access to uploading video files to the Vimeo platform through their own applications. This functionality also lets you manage videos and embed them into your web resources.
For Vimeo PRO Account:
You can get the direct link for any video or all videos in your account. To get the download link for all videos you have to call the following API with your access token.
GET https://api.vimeo.com/me/videos
or you can get the download link for a single video by calling the following API
https://api.vimeo.com/me/videos/{video_id}
In responses, you can find download['link']
For more information go to Vimeo API Documentation
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With