Grabbing the thumbnail URL for a video hosted on YouTube has always been simple. Just stick the video’s unique ID into a URL and bam- there’s your image. When it came to the Vimeo API, on the other hand, it used to be simple.
Recently Vimeo has been in the process of sunsetting it’s classic “SImple” API, also known as version 2. It seems like some videos still appear on the old API and some don’t. Now grabbing a thumbnail requires an developer app, API access, oAuth, and a huge php library to boot.
Luckily, I stumbled upon this approach from the Drupal community. Contrary to the title of this post, the thumbnail isn’t going to come from the Vimeo Developer API exactly, but instead Vimeo’s oEmbed endpoints.
Whether or not the video is public or private, as long as it is allowed to be embedded, vimeo provides an oEmbed endpoint with useful information about the video, including the thumbnail URL. Just grab the sweet JSON information, pull out the thumbnail URL, and enjoy!
https://gist.github.com/bacoords/77ee4d13dfa76db03981cb4eb0df0c6f
This handy little PHP function takes in the embed URL of a Vimeo video, hits the Vimeo API, grabs the oEmbed data, and spits out the thumbnail URL (or false if there are any issues). Play around with is, and see what other data you can grab.
Leave a Reply