我想獲得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
請幫忙解決這個問題。
你得到的是什麼錯誤發佈logcat的詳細信息 – RQube
@RQube感謝您的回覆,導入com.google.api.services.samples.youtube.cmdline.Auth時顯示錯誤;錯誤是無法解析導入com.google.api.services.samples – user3331192