我正在尝试从YouTube Data API Java Samples集合中执行Search by keyword示例代码。
为了做到这一点,我:
google-api-java-client-featured
中的库添加到项目中。 IDEA无法解决YouTube
类:
/**
* Define a global instance of a Youtube object, which will be used
* to make YouTube Data API requests.
*/
private static YouTube youtube;
我的问题:
我在哪里可以找到这个YouTube
课程,或者我该怎么做以便能够执行官方的YouTube Data API Java样本?
答案 0 :(得分:1)
似乎还有更多要下载的内容。除了实际YouTube Data API
之外,你得到了所有东西。在撰写本文时,可以在https://developers.google.com/api-client-library/java/apis/youtube/v3找到它。在该网站上,您可以选择下载.zip
文件,或通过Maven
或Gradle
获取。
我是通过搜索(Google搜索)类com.google.api.services.youtube.YouTube
找到的,我在上面链接的Sample
中将其列为导入。