• <tfoot id='lAU4K'></tfoot>
  • <legend id='lAU4K'><style id='lAU4K'><dir id='lAU4K'><q id='lAU4K'></q></dir></style></legend>

  • <i id='lAU4K'><tr id='lAU4K'><dt id='lAU4K'><q id='lAU4K'><span id='lAU4K'><b id='lAU4K'><form id='lAU4K'><ins id='lAU4K'></ins><ul id='lAU4K'></ul><sub id='lAU4K'></sub></form><legend id='lAU4K'></legend><bdo id='lAU4K'><pre id='lAU4K'><center id='lAU4K'></center></pre></bdo></b><th id='lAU4K'></th></span></q></dt></tr></i><div id='lAU4K'><tfoot id='lAU4K'></tfoot><dl id='lAU4K'><fieldset id='lAU4K'></fieldset></dl></div>
        <bdo id='lAU4K'></bdo><ul id='lAU4K'></ul>

      <small id='lAU4K'></small><noframes id='lAU4K'>

        如何使用 YouTube API 获取视频观看次数?

        时间:2023-09-08

        1. <i id='hzA8D'><tr id='hzA8D'><dt id='hzA8D'><q id='hzA8D'><span id='hzA8D'><b id='hzA8D'><form id='hzA8D'><ins id='hzA8D'></ins><ul id='hzA8D'></ul><sub id='hzA8D'></sub></form><legend id='hzA8D'></legend><bdo id='hzA8D'><pre id='hzA8D'><center id='hzA8D'></center></pre></bdo></b><th id='hzA8D'></th></span></q></dt></tr></i><div id='hzA8D'><tfoot id='hzA8D'></tfoot><dl id='hzA8D'><fieldset id='hzA8D'></fieldset></dl></div>
        2. <legend id='hzA8D'><style id='hzA8D'><dir id='hzA8D'><q id='hzA8D'></q></dir></style></legend>

              <tbody id='hzA8D'></tbody>

            <small id='hzA8D'></small><noframes id='hzA8D'>

            <tfoot id='hzA8D'></tfoot>

                • <bdo id='hzA8D'></bdo><ul id='hzA8D'></ul>
                • 本文介绍了如何使用 YouTube API 获取视频观看次数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  这个问题很简单.如何使用 YouTube API 获取视频观看次数?

                  The question is very simple. How to get number of video views with YouTube API?

                  任务很简单,但我想经常对大量视频使用该查询.有什么方法可以调用他们的 Youtube API 并获取它?(类似于 facebook http://api.facebook.com/restserver.php?method=links.getStats&urls=developers.facebook.com)

                  The task is simple but I would like to use that query on large number of videos very often. Is there any way to call their Youtube API and get it? (something like facebook http://api.facebook.com/restserver.php?method=links.getStats&urls=developers.facebook.com)

                  推荐答案

                  我认为,最简单的方法是获取 JSON 格式的视频信息.如果您想使用 JavaScript,请尝试 jQuery.getJSON()... 但我更喜欢 PHP:

                  I think, the easiest way, is to get video info in JSON format. If you want to use JavaScript, try jQuery.getJSON()... But I prefer PHP:

                  <?php
                  $video_ID = 'your-video-ID';
                  $JSON = file_get_contents("https://gdata.youtube.com/feeds/api/videos/{$video_ID}?v=2&alt=json");
                  $JSON_Data = json_decode($JSON);
                  $views = $JSON_Data->{'entry'}->{'yt$statistics'}->{'viewCount'};
                  echo $views;
                  ?>
                  

                  参考:Youtube API - 检索有关单个视频的信息

                  这篇关于如何使用 YouTube API 获取视频观看次数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:停止嵌入 youtube iframe? 下一篇:如何使嵌入式 Youtube 播放器静音?

                  相关文章

                • <small id='cMheq'></small><noframes id='cMheq'>

                    1. <legend id='cMheq'><style id='cMheq'><dir id='cMheq'><q id='cMheq'></q></dir></style></legend>
                      <tfoot id='cMheq'></tfoot>
                      <i id='cMheq'><tr id='cMheq'><dt id='cMheq'><q id='cMheq'><span id='cMheq'><b id='cMheq'><form id='cMheq'><ins id='cMheq'></ins><ul id='cMheq'></ul><sub id='cMheq'></sub></form><legend id='cMheq'></legend><bdo id='cMheq'><pre id='cMheq'><center id='cMheq'></center></pre></bdo></b><th id='cMheq'></th></span></q></dt></tr></i><div id='cMheq'><tfoot id='cMheq'></tfoot><dl id='cMheq'><fieldset id='cMheq'></fieldset></dl></div>
                        <bdo id='cMheq'></bdo><ul id='cMheq'></ul>