Youtube からデータを取得する方法に関する情報を調査しています。基本的に私がやりたいことは、再生リスト (例: http://gdata.youtube.com/feeds/api/playlists/6A40AB04892E2A1F ) からビデオに関する情報 (タイトル、説明、サムネイル URL) を取得することです。このコード スニペットを使用してタイトルを取得できました (別の質問から借用しました)。
String featuredFeed = "http://gdata.youtube.com/feeds/api/playlists/6A40AB04892E2A1F";
url = new URL(featuredFeed);
URLConnection connection;
connection = url.openConnection();
HttpURLConnection httpConnection = (HttpURLConnection) connection;
int responseCode = httpConnection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
InputStream in = httpConnection.getInputStream();
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setNamespaceAware(true);
DocumentBuilder db = dbf.newDocumentBuilder();
Document dom = db.parse(in);
Element docEle = dom.getDocumentElement();
NodeList nl = docEle.getElementsByTagName("entry");
// NodeList nl2 = ;
if (nl != null && nl.getLength() > 0) {
for (int i = 0; i < nl.getLength(); i++) {
Element entry = (Element) nl.item(i);
Element title = (Element) entry.getElementsByTagName(
"title").item(0);
String titleStr = title.getFirstChild().getNodeValue();
Log.i("TEST LOG", "TITLES: " + titleStr);
}
}
}
ただし、サムネイルの URL を取得する方法がよくわかりません。タグを見たことがありますが、ノードリストから呼び出す方法がわかりません。この方法を使用して、動画のサムネイル URL と動画の説明を取得する方法を教えてください。
前もって感謝します。