0

我正在尝试访问 YouTube 数据 API,但此示例代码似乎不起作用。

我的gradle构建文件如下:

apply plugin: 'java'

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.google.apis:google-api-services-youtube:v3-rev79-1.17.0-rc'
    compile 'com.google.api.client:google-api-client-googleapis:1.4.0-alpha'

}

我尝试使用的最小测试用例是:

YouTube youtube = new YouTube.Builder(new NetHttpTransport(), new GsonFactory(), new HttpRequestInitializer() {
    @Override
    public void initialize(com.google.api.client.http.HttpRequest httpRequest) throws IOException {}
}).setApplicationName("youtube-api").build();

YouTube.Search.List search = youtube.search().list("id");
search.setKey(API_KEY);
search.setQ("search string");
search.execute(); // execute() method does not exist
4

1 回答 1

1

显然我引用了错误版本的 google-api-client 库。正确的 gradle 构建脚本是:

apply plugin: 'java'

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.google.apis:google-api-services-youtube:v3-rev79-1.17.0-rc'
    compile 'com.google.api-client:google-api-client:1.17.0-rc'
    compile 'com.google.http-client:google-http-client-gson:1.17.0-rc'
}
于 2013-10-16T19:59:22.943 回答