gpt4 book ai didi

android - 在 YouTube API V3 Android 中检索热门视频

转载 作者:行者123 更新时间:2023-11-29 17:41:57 24 4
gpt4 key购买 nike

我正在尝试获取官方 Youtube 应用程序上可用的 HitTest 门视频或观看内容,以显示在我使用 Youtube api v3 的 youtube 应用程序中。

我使用以下代码来搜索具有特定关键字的视频..

public List<VideoItem> search(String keywords) {
query.setQ(keywords);
try {
SearchListResponse response = query.execute();
List<SearchResult> results = response.getItems();

List<VideoItem> items = new ArrayList<VideoItem>();
for (SearchResult result : results) {
String videoURL = "http://www.youtube.com/watch?v=" + result.getId().getVideoId();
VideoItem item = new VideoItem(result.getSnippet().getTitle(),
result.getSnippet().getDescription(), result
.getSnippet().getThumbnails().getDefault()
.getUrl(), result.getId().getVideoId(), videoURL);
items.add(item);
}
return items;
} catch (IOException e) {
Log.d("YC", "Could not search: " + e);
return null;
}
}

它完美地工作..但我不知道如何让 What to Watch 显示在我的主要 Activity 上..我找到了 this但它只适用于版本 2..有什么想法吗?

最佳答案

使用 YouTube API V3 的开发者 API key 使用以下内容在 YouTube API V3 中检索热门视频:

https://www.googleapis.com/youtube/v3/videos?chart=mostPopular&key={YOUR_API_KEY}&part=snippet&maxResults=4

关于android - 在 YouTube API V3 Android 中检索热门视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28375112/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com