我一直试图获取关于流星的视频信息。
从我所阅读和尝试的所有内容中,我得出的结论是,最好在服务器上执行此操作,这意味着我必须使用renaldo:youtube-api
包。
我的问题是,我该如何使用它?根据我的理解,通过阅读它的氛围页面,我应该看http://ionizabicau.github.io/youtube-api/,但是,该页面似乎是404'
我在哪里参考教程?我是一个非常大的菜鸟 此外,在大气页面上,它描述了如何使用
进行设置YoutubeApi.authenticate({
type: 'key',
key: 'YOUR_KEY'
});
Meteor.methods({
searchVideo: function(search) {
YoutubeApi.search.list({
part: "id",
type: "video",
maxResults: 5,
q: search,
}, function (err, data) {
console.log(err, data);
});
}
});
但是,从这看起来,我知道它的意思是返回搜索结果,而不是视频数据。
我正在尝试返回这些结果 -
{
"items": [
{
"id": "7lCDEYXw3mM",
"snippet": {
"title": "Google I/O 101: Q&A On Using Google APIs",
"description": "Antonio Fuentes speaks to us and takes questions on working with Google APIs and OAuth 2.0."
},
"contentDetails": {
"duration": "PT15M51S"
}
}
]
}
很抱歉,如果我遗漏了一些非常简单的内容,感谢您的回答。