6

我正在尝试使用 YouTube API for .NET 从视频条目中获取评论源。我正在使用 WPF 和 C# 编写一个程序,但我似乎一辈子都无法弄清楚如何检索这个提要。

我尝试查看YouTube API Developer's Guide,但它似乎缺少有关评论供稿的一些信息(靠近页面底部)。

4

2 回答 2

1

这在 YouTube API 的第 3 版中有所更改。有一个名为的新端点commentThreads/list允许您返回资源的评论线程。

如果要返回视频资源的评论列表,请使用part=id,snippet和设置 GET 请求videoId=[VIDEO_ID]。我将使用https://www.youtube.com/watch?v=HwNIDcwfRLY作为示例:

HTTP GET https://www.googleapis.com/youtube/v3/commentThreads?part=id%2Csnippet&videoId=HwNIDcwfRLY&key={YOUR_API_KEY}

让我们以返回的第一条评论为例:

{
    "kind": "youtube#commentThread",
    "etag": "\"DsOZ7qVJA4mxdTxZeNzis6uE6ck/jhK_kJqnNF8_fiRI_o7w6ehubv8\"",
    "id": "z120sfshyxzewt1nx23sevyr1vu1jd2pr04",
    "snippet": {
        "videoId": "HwNIDcwfRLY",
        "topLevelComment": {
            "kind": "youtube#comment",
            "etag": "\"DsOZ7qVJA4mxdTxZeNzis6uE6ck/h903NemnXx-8Hfe6lRIYCFERSe4\"",
            "id": "z120sfshyxzewt1nx23sevyr1vu1jd2pr04",
            "snippet": {
            "authorDisplayName": "mach-a-chine seahawksgoonie",
            "authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
            "authorChannelUrl": "http://www.youtube.com/channel/UCBmJ0sw7plIZHLvhfz7oo_w",
            "authorChannelId": {
                "value": "UCBmJ0sw7plIZHLvhfz7oo_w"
            },
            "videoId": "HwNIDcwfRLY",
            "textDisplay": "",
            "authorGoogleplusProfileUrl": "https://plus.google.com/102274783439566633837",
            "canRate": true,
            "viewerRating": "none",
            "likeCount": 0,
            "publishedAt": "2016-02-05T03:42:35.158Z",
            "updatedAt": "2016-02-05T03:42:35.158Z"
            }
        },
        "canReply": true,
        "totalReplyCount": 0,
        "isPublic": true
    }
}

请注意,注释实际上不在此topLevelComment对象中。 textDisplay返回空字符串,这是 YouTube API 的一个已知问题。我们需要向commentThreads/listwith提出一个额外的请求id=[COMMENT_ID],其中[COMMENT_ID]topLevelComment.id

HTTP GET https://www.googleapis.com/youtube/v3/commentThreads?part=id%2Csnippet&id=z120sfshyxzewt1nx23sevyr1vu1jd2pr04&key={YOUR_API_KEY}

结果响应的snippet字典将用户的评论作为textDisplay键的值:

"snippet": {
    "authorDisplayName": "mach-a-chine seahawksgoonie",
    "authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
    "authorChannelUrl": "http://www.youtube.com/channel/UCBmJ0sw7plIZHLvhfz7oo_w",
    "authorChannelId": {
            "value": "UCBmJ0sw7plIZHLvhfz7oo_w"
    },
    "videoId": "HwNIDcwfRLY",
    "textDisplay": "my next ring tone! yeah boy!\ufeff",
    "authorGoogleplusProfileUrl": "https://plus.google.com/102274783439566633837",
    "canRate": true,
    "viewerRating": "none",
    "likeCount": 0,
    "publishedAt": "2016-02-05T03:42:35.158Z",
    "updatedAt": "2016-02-05T03:42:35.158Z"
    }
}

评论是:“我的下一个铃声!是的,男孩!”

请注意,您还可以传入最多 50 个逗号分隔idvideoId评论对象字符串的列表,以检索每个 API 调用。

有关其他信息和示例代码,请参阅视频指南的检索评论。

于 2016-02-12T21:18:20.727 回答
-1
YouTubeRequest request = ... // Your request object    
Video v = ... // Your video object
Feed<Comment> comments = request.GetComments(v);

comments.entries将包含视频 v 的所有评论作为Comment对象,因此您根本不需要弄乱提要。

于 2009-10-05T02:44:38.600 回答