检查服务器端是否存在 youtube 视频 [英] check on server side if youtube video exist

查看:40
本文介绍了检查服务器端是否存在 youtube 视频的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何检查 node.js 应用服务器端是否存在 youtube 视频:

How to check if youtube video exists on node.js app server side:

var youtubeId = "adase268_";

// pseudo code
youtubeVideoExist = function (youtubeId){
   return true; // if youtube video exists
}

推荐答案

使用 youtube-feeds 模块.运行速度快(约 200 毫秒),无需 API_KEY

Using youtube-feeds module. Works fast (~200ms) and no need API_KEY

youtube = require("youtube-feeds");

existsFunc = function(youtubeId, callback) {
  youtube.video(youtubeId, function(err, result) {
    var exists;
    exists = result.id === youtubeId;
    console.log("youtubeId");
    console.log(youtubeId);
    console.log("exists");
    console.log(exists);
    callback (exists);
  });
};


var notExistentYoutubeId = "y0srjasdkfjcKC4eY"
existsFunc (notExistentYoutubeId, console.log)

var existentYoutubeId = "y0srjcKC4eY"
existsFunc (existentYoutubeId, console.log)

输出:

❯ node /pathToFileWithCodeAbove/FileWithCodeAbove.js
youtubeId
y0srjcKC4eY
exists
true
true
youtubeId
y0srjasdkfjcKC4eY
exists
false
false

这篇关于检查服务器端是否存在 youtube 视频的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆