有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java为YouTube用户检索提要(上传)

去年,我有时可以通过简单地添加/uploads?alt=rss为YouTube用户检索(公开访问)视频提要。e、 g.http://gdata.youtube.com/feeds/base/users/NTVKenya给出了http://gdata.youtube.com/feeds/base/users/NTVKenya/uploads?alt=rss。但这项服务已不再提供

我想,现在推荐的方法是使用GData库。但是,使用此服务会给我com.google.gdata.util.NoLongerAvailableException异常:

        YouTubeService service = new YouTubeService("service"); 
        ArrayList<String> urls = new ArrayList<String>();
        VideoFeed videoFeed = service.getFeed(new URL('http://gdata.youtube.com/feeds/base/users/NTVKenya'), VideoFeed.class);
        for (VideoEntry videoEntry : videoFeed.getEntries() ) {
            urls.add( videoEntry.getHtmlLink().getHref() );
        }

这使得:

        com.google.gdata.util.NoLongerAvailableException: No longer available
        <errors xmlns='http://schemas.google.com/g/2005'><error><domain>GData</domain><code>NoLongerAvailableException</code><internalReason>No longer available</internalReason></error></errors>

我哪里做错了

谢谢


共 (1) 个答案

  1. # 1 楼答案

    这比我想象的要难多了

    关键是你现在需要一个YouTube开发者API密钥。 您可以在以下位置获取钥匙: https://console.developers.google.com

    enter image description here

    enter image description here

    一旦我创建了一个应用程序并获得了我的密钥,我就在这里找到了新的V3 API: https://developers.google.com/youtube/v3/sample_requests

    我能够建立一个似乎有效的URL。。。您可能需要进一步研究和完善它。以下是我尝试的(用您的密钥替换MYAPIKEYHERE): https://www.googleapis.com/youtube/v3/search?part=snippet&q=NTVKenya&order=viewCount&type=video&key=MYAPIKEYHERE

    下面是它返回的结果:

    {
     "kind": "youtube#searchListResponse",
     "etag": "\"oqbvhYxBE6fAbRk6m7aLlHf5s1I/8Pwx4tA-oE0lcjEgrRoqOeaeu4w\"",
     "nextPageToken": "CAUQAA",
     "pageInfo": {
      "totalResults": 484531,
      "resultsPerPage": 5
     },
     "items": [
      {
       "kind": "youtube#searchResult",
       "etag": "\"oqbvhYxBE6fAbRk6m7aLlHf5s1I/RzPtjac7Nh1ggOliIdOlMbB_qls\"",
       "id": {
        "kind": "youtube#video",
        "videoId": "PywWIHqiwD0"
       },
       "snippet": {
        "publishedAt": "2011-11-18T15:57:15.000Z",
        "channelId": "UCekTpzKodObpOcmvVCFUvTw",
        "title": "Turkana woman breastfeeds orphaned goat",
        "description": "http://www.ntv.co.ke A woman in Turkana has been taking care of an orphaned she goat for five months in an unorthodox manner. The woman rescued the kid ...",
        "thumbnails": {
         "default": {
          "url": "https://i.ytimg.com/vi/PywWIHqiwD0/default.jpg"
         },
         "medium": {
          "url": "https://i.ytimg.com/vi/PywWIHqiwD0/mqdefault.jpg"
         },
         "high": {
          "url": "https://i.ytimg.com/vi/PywWIHqiwD0/hqdefault.jpg"
         }
        },
        "channelTitle": "NTVKenya",
        "liveBroadcastContent": "none"
       }
      },
      {
       "kind": "youtube#searchResult",
       "etag": "\"oqbvhYxBE6fAbRk6m7aLlHf5s1I/boF8bbeOYRKjwV6Y_dmUEwIMD9Y\"",
       "id": {
        "kind": "youtube#video",
        "videoId": "mmLD5ztBEp4"
       },
       "snippet": {
        "publishedAt": "2014-06-06T22:38:02.000Z",
        "channelId": "UCekTpzKodObpOcmvVCFUvTw",
        "title": "#theTrend: Socialite Vera Sidika's new look",
        "description": "Vera Sidika tells Larry Madowo about her skin lightening procedure, what she does for a living and her expensive lifestyle For more news visit ...",
        "thumbnails": {
         "default": {
          "url": "https://i.ytimg.com/vi/mmLD5ztBEp4/default.jpg"
         },
         "medium": {
          "url": "https://i.ytimg.com/vi/mmLD5ztBEp4/mqdefault.jpg"
         },
         "high": {
          "url": "https://i.ytimg.com/vi/mmLD5ztBEp4/hqdefault.jpg"
         }
        },
        "channelTitle": "NTVKenya",
        "liveBroadcastContent": "none"
       }
      },
      {
       "kind": "youtube#searchResult",
       "etag": "\"oqbvhYxBE6fAbRk6m7aLlHf5s1I/Bt6PHnNvhHX1COI1T3SPm9DVwUE\"",
       "id": {
        "kind": "youtube#video",
        "videoId": "fQOmP8bNjqw"
       },
       "snippet": {
        "publishedAt": "2013-04-27T19:23:09.000Z",
        "channelId": "UCekTpzKodObpOcmvVCFUvTw",
        "title": "Kenyan Spirit: Kenyan athlete gave up winning to help colleague",
        "description": "http://www.ntv.co.ke And now to a story about selflessness and sacrifice and its about a Kenyan athlete. A picture they say is worth a thousand words and when a ...",
        "thumbnails": {
         "default": {
          "url": "https://i.ytimg.com/vi/fQOmP8bNjqw/default.jpg"
         },
         "medium": {
          "url": "https://i.ytimg.com/vi/fQOmP8bNjqw/mqdefault.jpg"
         },
         "high": {
          "url": "https://i.ytimg.com/vi/fQOmP8bNjqw/hqdefault.jpg"
         }
        },
        "channelTitle": "NTVKenya",
        "liveBroadcastContent": "none"
       }
      },
      {
       "kind": "youtube#searchResult",
       "etag": "\"oqbvhYxBE6fAbRk6m7aLlHf5s1I/ReuOIGBmLl_r53O88M9HMNlEwI4\"",
       "id": {
        "kind": "youtube#video",
        "videoId": "LeyBaXQPe1E"
       },
       "snippet": {
        "publishedAt": "2013-11-03T20:39:58.000Z",
        "channelId": "UCekTpzKodObpOcmvVCFUvTw",
        "title": "NTV Investigates: Seeds of Sin",
        "description": "Religion has and will always be an emotive subject to many Kenyans. The constitution guarantees freedom of worship, but some are taking advantage of the ...",
        "thumbnails": {
         "default": {
          "url": "https://i.ytimg.com/vi/LeyBaXQPe1E/default.jpg"
         },
         "medium": {
          "url": "https://i.ytimg.com/vi/LeyBaXQPe1E/mqdefault.jpg"
         },
         "high": {
          "url": "https://i.ytimg.com/vi/LeyBaXQPe1E/hqdefault.jpg"
         }
        },
        "channelTitle": "NTVKenya",
        "liveBroadcastContent": "none"
       }
      },
      {
       "kind": "youtube#searchResult",
       "etag": "\"oqbvhYxBE6fAbRk6m7aLlHf5s1I/E5tUCJn1PIsHvXyaUiRT9-ENiI8\"",
       "id": {
        "kind": "youtube#video",
        "videoId": "zMtzSqLgkP8"
       },
       "snippet": {
        "publishedAt": "2012-04-23T19:15:19.000Z",
        "channelId": "UCekTpzKodObpOcmvVCFUvTw",
        "title": "Naked injustice:Ugandan women protest activist's arrest",
        "description": "http://www.ntv.co.ke Hundreds of women activists in Uganda stripped to protest the arrest of a fellow activist. The women accused the police of mishandling the ...",
        "thumbnails": {
         "default": {
          "url": "https://i.ytimg.com/vi/zMtzSqLgkP8/default.jpg"
         },
         "medium": {
          "url": "https://i.ytimg.com/vi/zMtzSqLgkP8/mqdefault.jpg"
         },
         "high": {
          "url": "https://i.ytimg.com/vi/zMtzSqLgkP8/hqdefault.jpg"
         }
        },
        "channelTitle": "NTVKenya",
        "liveBroadcastContent": "none"
       }
      }
     ]
    }