videos.list
を使用して、Youtubeでライブストリーミング以外の動画を検索してみてください。操作を実行するためにHTTPリクエスト
GET https://www.googleapis.com/youtube/v3/videos
を使用してください。
Try-itをお寄せください。あなたのブラウザで今すぐ結果をご覧ください。
あなたは、Androidを使っているので、同じページからこのコード・スニペットは、あなたのアイデア与えるかもしれない:
// Call the YouTube Data API's youtube.videos.list method to
// retrieve the resources that represent the specified videos.
YouTube.Videos.List listVideosRequest = youtube.videos().list("snippet, recordingDetails").setId(videoId);
VideoListResponse listResponse = listVideosRequest.execute();
List<Video> videoList = listResponse.getItems();
を