Android: tratando de obtener datos de la API de YouTube

Estoy intentando obtener datos dehttp://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?&start-index=1&max-results=15&v=2 e imprimo los títulos de los videos, pero recibo una excepción en la línea

            int responseCode = httpConnection.getResponseCode(); 

¿Cuál es el problema? ¿Alguna otra forma de obtener estos datos?

Mi código:

URL url;


    try {
                String featuredFeed = "http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?&start-index=1&max-results=15&v=2";

                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();
                  DocumentBuilder db = dbf.newDocumentBuilder();

                  // Parse the earthquake feed.
                  Document dom = db.parse(in);      
                  Element docEle = dom.getDocumentElement();



                  // Get a list of each earthquake entry.
                  NodeList nl = docEle.getElementsByTagName("entry");
                  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();


                      VideoCell cell = new VideoCell(titleStr);

                      // Process a newly found earthquake
                      addVideoCellToArray(cell);
                    }
                  }
                }
              } catch (MalformedURLException e) {
                e.printStackTrace();
              } catch (IOException e) {
                e.printStackTrace();
              } catch (ParserConfigurationException e) {
                e.printStackTrace();
              } catch (SAXException e) {
                e.printStackTrace();
              }
              finally {
              }

EDITAR: Problema resuelto. Olvidé agregar permisos de internet!

Respuestas a la pregunta(0)

Su respuesta a la pregunta