使用 Jquery 检索 Youtube 标签

Retrieve Youtube Tags using Jquery

我正在尝试弄清楚如何检索 Youtube 标签并在我的代码中使用它们,但我什至似乎无法检索任何信息。检索带有 ,; 等分隔符的标签的最佳方法是什么?

  var video_id='VA770wpLX-Q';

$.getJSON('http://gdata.youtube.com/feeds/api/videos/'+video_id+'?v=2&alt=jsonc',function(data,status,xhr){
alert(data.data.tags);
 });

这是 Json 对象的样子:

 {
"apiVersion": "2.1",
"data": {
    "id": "VA770wpLX-Q",
    "uploaded": "2011-02-24T22:31:02.000Z",
    "updated": "2012-04-08T21:37:06.000Z",
    "uploader": "drdrevevo",
    "category": "Music",
    "title": "Dr. Dre - I Need A Doctor (Explicit) ft. Eminem, Skylar Grey",
    "description": "Music video by Dr. Dre performing I Need A Doctor featuring Eminem and Skylar Grey (Explicit). © 2011 Aftermath Records",
    "tags": ["Dr", "Dre", "Eminem", "New", "Song", "Skylar", "Grey", "GRAMMYs", "Dr.", "Need", "Doctor", "video", "Eazy", "N.W.A.", "NWA", "easy", "drdre", "and", "em"],
    "thumbnail": {
        "sqDefault": "http://i.ytimg.com/vi/VA770wpLX-Q/default.jpg",
        "hqDefault": "http://i.ytimg.com/vi/VA770wpLX-Q/hqdefault.jpg"
    },
    "player": {
        "default": "http://www.youtube.com/watch?v=VA770wpLX-Q&feature=youtube_gdata_player"
    },
    "content": {
        "5": "http://www.youtube.com/v/VA770wpLX-Q?version=3&f=videos&app=youtube_gdata"
    },
    "duration": 457,
    "aspectRatio": "widescreen",
    "rating": 4.902695,
    "likeCount": "430519",
    "ratingCount": 441253,
    "viewCount": 88270796,
    "favoriteCount": 306556,
    "commentCount": 270597,
    "status": {
        "value": "restricted",
        "reason": "requesterRegion"
    },
    "restrictions": [{
        "type": "country",
        "relationship": "deny",
        "countries": "DE"
    }],
    "accessControl": {
        "comment": "allowed",
        "commentVote": "allowed",
        "videoRespond": "allowed",
        "rate": "allowed",
        "embed": "allowed",
        "list": "allowed",
        "autoPlay": "denied",
        "syndicate": "allowed"
    }
}
}

Youtube 不再支持 "tag" 功能,它是 API。