2014-04-23 35 views
0

我想獲得YouTube視頻列表按關鍵字搜索在我的應用程序。 我是指在如何獲得相關的視頻列表按照關鍵字搜索使用youtube api在android中

import com.google.api.services.samples.youtube.cmdline.Auth; 

YouTube youtube = new YouTube.Builder(Auth.HTTP_TRANSPORT, Auth.JSON_FACTORY, new HttpRequestInitializer() { 
       public void initialize(HttpRequest request) throws IOException { 
       } 
      }).setApplicationName("youtube-cmdline-search-sample").build(); 

許多聯繫,但得到的錯誤,我得到了以下錯誤消息

The import com.google.api.services.samples cannot be resolved 

驗證是不是進口的。 我的參考鏈接:https://developers.google.com/youtube/v3/docs/search/list

請幫忙解決這個問題。

+1

你得到的是什麼錯誤發佈logcat的詳細信息 – RQube

+0

@RQube感謝您的回覆,導入com.google.api.services.samples.youtube.cmdline.Auth時顯示錯誤;錯誤是無法解析導入com.google.api.services.samples – user3331192

回答

0

您可以通過向Youtube API發送查詢網址來搜索YouTube視頻。你也可以按類別搜索。代碼ClickHere

+0

感謝您的回覆,我指的是您的鏈接 – user3331192

+0

什麼是用於搜索videos.ibrors庫顯示:YouTubeService不能解析爲類型,並可以您提供任何示例代碼來獲取與搜索關鍵字相關的視頻列表 – user3331192

+0

@ user3331192您必須使用gdata-youtube-2.0,gdata-client,gdata-core,gdata-media apis – Yuvaraja

相關問題