Nhan Nguyen
Nhan Nguyen

Reputation: 143

The API Vimeo Config doesn't return progressive URL anymore?

I use the API https://player.vimeo.com/video/{vimeo_id}/config to get the streaming URL from the JSON response.

But Now the API doesn't return the Streaming URL anymore if it's a new video upload. The old one still has it.

Do you have any idea how to make it work?

Thank you in advance.

Upvotes: 13

Views: 3343

Answers (1)

Tamer Kadan
Tamer Kadan

Reputation: 186

The Correct method to get the video files and progressive URL's are

GET https://api.vimeo.com/videos/{video_id}

This method returns a single video.

video_id * Number The ID of the video.

You can refer for it here : https://developer.vimeo.com/api/reference/videos#get_video

Get video file and download links from the API This feature requires a Vimeo Standard and higher or Vimeo Pro and higher membership.

The method you are using isn't valid anymore, you can contact Vimeo Support for further questions

Upvotes: 8

Related Questions