Get Vimeo thumbnail for video using jQuery

前端 未结 4 798
长发绾君心
长发绾君心 2021-02-04 15:19

I\'ve found similar questions but none of the answers show clearly and easily how to get a thumbnail for a vimeo video using jQuery and JSON. If anyone can help that would be gr

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-04 16:11

    I believe you're having the "same origin policy" issue. You should consider writing a server side script using something like "file_get_contents" or "fopen", enabling you to grab the data from vimeo, translate it to json, and output to your javascript with a nice ajax call.

    If you would like to avoid using a server-side script you may use the data type JSONP.

    var vimeoVideoID = '17631561';
    
    $.getJSON('https://www.vimeo.com/api/v2/video/' + vimeoVideoID + '.json?callback=?', {format: "json"}, function(data) {
             $(".thumbs").attr('src', data[0].thumbnail_large);
    });
    

    Notice the URL is a bit different from how you are using it. The callback which you defined as a var is unnecessary. You're attaching the getJSON to a function directly, so you'll call the 'callback' in the url '?'. This informs the getJSON function to pass the successful data return to the supplied function.

    You can test my code here. Hope it helps!

提交回复
热议问题