提取 YouTube 频道社区源数据

2023-11-30

我正在尝试从分析渠道收集社区源数据。 我找不到使用 YouTube Data API v3 的方法。有没有办法提取此类数据?

The data I would like to extract is in the community feed. For instance, it's a community feed from Dr. Bharatendra Rai channel. I would like to collect all his feed. Dr. Bharatendra Rai community post


再一次YouTube 数据 API v3不提供基本功能。

我建议你使用我的开源 YouTube 操作 API,确实通过请求您将获得一个 JSON,其中包含您要查找的频道社区帖子(文本、图像、视频、无答案的民意调查、点赞数、评论数、日期等)item['community'].

请注意,我的 API 无法检索投票答案,因为它需要与 YouTube 帐户连接。此外,目前我的 API 也不支持检索给定社区帖子的评论。

注意分页我的 API 的工作原理与 YouTube 数据 API v3 之一相同。

带有 YouTube 频道 ID 的结果示例UCQxJsAlqmBPAbR_0syDi9mg:

{
    "kind": "youtube#channelListResponse",
    "etag": "NotImplemented",
    "items": [
        {
            "kind": "youtube#channel",
            "etag": "NotImplemented",
            "id": "UCQxJsAlqmBPAbR_0syDi9mg",
            "community": [
                {
                    "id": "UgkxZ8SQN2CQpX022xUKBJNYCvY3VtGYMrt3",
                    "date": "3 weeks ago",
                    "contentText": [
                        {
                            "text": "Quick question, everyone: Who owns the products that you buy? If the answer is you, shouldn\u2019t you be able to repair what you rightfully own?"
                        }
                    ],
                    "likes": 8,
                    "comments": 1,
                    "videoId": "d4sYQ22Y00k",
                    "image": null,
                    "poll": null,
                    "edited": false
                },
                ...
            ],
            "nextPageToken": "4qmFsgKBARIYVUNReEpzQWxxbUJQQWJSXzBzeURpOW1nGkxFZ2xqYjIxdGRXNXBkSG00QVFDcUF4d0tHRkV3T1ZGbFJ6RktUVVZrUmxNd1VucGpSVzkzVVhjOVBTZ0s4Z1lFQ2dKS0FBJTNEJTNEmgIWYmFja3N0YWdlLWl0ZW0tc2VjdGlvbg=="
        }
    ]
}

更准确地说,您将获得包含以下内容的帖子:

  • 带有视频的文字 (UgkxZ8SQN2CQpX022xUKBJNYCvY3VtGYMrt3): 参见上面的例子
  • 带有 GIF 的文本(UgwAKK9XbGapMEH_rNB4AaABCQ):
{
    "id": "UgwAKK9XbGapMEH_rNB4AaABCQ",
    "date": "1 year ago",
    "contentText": [
        {
            "text": "Here's to all ten thousand of you \ud83c\udf89\nThis is so much more than a phone \u2013 to Fairphone, to an entire industry, and to our community. It\u2019s a physical expression of everything we believe in and have worked for since we started in 2010. \nWe've got lots of interesting, challenging, exciting content in the works and will do our best to give all of you the video's you're looking for on this channel. \n\nCheers for tuning in! Now let's go add a couple more zero's to that sub count ;)"
        }
    ],
    "likes": 39,
    "comments": 4,
    "videoId": null,
    "image": {
        "thumbnails": [
            {
                "url": "https:\/\/yt3.ggpht.com\/6h9etF2mni8uU6rILsz5K3CGFdzepbPQfivxy0wBwtyheeIXanhMkRvAB4PNnJsQ9VUyXSlNvX_I=s288-c-fcrop64=1,151f0000d51effff-nd-v1",
                "width": 288,
                "height": 288
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/6h9etF2mni8uU6rILsz5K3CGFdzepbPQfivxy0wBwtyheeIXanhMkRvAB4PNnJsQ9VUyXSlNvX_I=s400-c-fcrop64=1,151f0000d51effff-nd-v1",
                "width": 400,
                "height": 400
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/6h9etF2mni8uU6rILsz5K3CGFdzepbPQfivxy0wBwtyheeIXanhMkRvAB4PNnJsQ9VUyXSlNvX_I=s512-c-fcrop64=1,151f0000d51effff-nd-v1",
                "width": 512,
                "height": 512
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/6h9etF2mni8uU6rILsz5K3CGFdzepbPQfivxy0wBwtyheeIXanhMkRvAB4PNnJsQ9VUyXSlNvX_I=s600-c-fcrop64=1,151f0000d51effff-nd-v1",
                "width": 600,
                "height": 600
            }
        ]
    },
    "poll": null,
    "edited": false
}
  • 带有图片的文字 (UgxjystGgDuX45mgJLp4AaABCQ):
{
    "id": "UgxjystGgDuX45mgJLp4AaABCQ",
    "date": "1 year ago",
    "contentText": [
        {
            "text": "Super exclusive "
        },
        {
            "text": "#SNEAKPEEK",
            "url": "https:\/\/www.youtube.com\/hashtag\/sneakpeek"
        },
        {
            "text": ":  Here's our co-founder and product lead Miquel Ballester in what used to be our recording studio (we're mid-office-move). Notice the professional cardboard-movingbox-tripod :)\n\nAnyways, Miquel is talking to one of our favorite Youtubers for an upcoming project, that we couldn't be more excited about. \n\nBest guess in the comments wins a personal AMA with Miquel \ud83d\udca1\ud83d\udc47"
        }
    ],
    "likes": 31,
    "comments": 19,
    "videoId": null,
    "image": {
        "thumbnails": [
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s288-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 288,
                "height": 288
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s400-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 400,
                "height": 400
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s512-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 512,
                "height": 512
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s640-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 640,
                "height": 640
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s800-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 800,
                "height": 800
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s1024-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 1024,
                "height": 1024
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s1600-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 1600,
                "height": 1600
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s2048-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 2048,
                "height": 2048
            },
            {
                "url": "https:\/\/yt3.ggpht.com\/QJeFrnIXTmSqYdH7kr3xGx5S-4DoTFZrvL7XaOlZFnCXk173MviBp7Vaw1SxR_m3n6_ezYqA37W_yg=s2900-c-fcrop64=1,00001cdaffffe5d3-nd-v1",
                "width": 2900,
                "height": 2900
            }
        ]
    },
    "poll": null,
    "edited": false
}
  • 带有民意调查的文本:
{
    "id": "UgwSoAm2bGLaJM44UTZ4AaABCQ",
    "date": "1 year ago",
    "contentText": [
        {
            "text": "What type of videos should we focus on in 2021?"
        }
    ],
    "likes": 25,
    "comments": 7,
    "videoId": null,
    "image": null,
    "poll": {
        "choices": [
            {
                "text": "Tutorials, how to's, tips & tricks"
            },
            {
                "text": "Behind the scenes \/ making of"
            },
            {
                "text": "Documentary series about our industry"
            },
            {
                "text": "Explanation-Animation"
            },
            {
                "text": "Community content (Ambassadors, changemakers etc.)"
            }
        ],
        "totalVotes": 138
    },
    "edited": false
}
  • 提及频道的文本(UgkxFeexIJyCyz157nuukfI25v_xqFW4_VUi):
{
    "id": "UgkxFeexIJyCyz157nuukfI25v_xqFW4_VUi",
    "date": "4 months ago",
    "contentText": [
        {
            "text": "YouTube has a new Creator Liaison, "
        },
        {
            "text": "Rene Ritchie",
            "url": "https:\/\/www.youtube.com\/channel\/UCLBHPoY3NugnZYURxln3fKQ"
        },
        {
            "text": "! He\u2019s worked in product marketing and tech media, posted his first video in 2008 and, for the last two years, has been a full-time YouTuber growing his own channel. Now, he\u2019s here to advocate for creators inside YouTube, to help YouTube better understand and empathize with creators, and to help creators better understand YouTube and everything it has to offer. If you have Platform-level Creator feedback, reach out to Rene at @YouTubeLiaison on Twitter. If you have questions and individual support issues, reach out to @TeamYouTube on Twitter. Welcome, Rene!!"
        }
    ],
    "likes": 2,
    "comments": 510,
    "videoId": null,
    "image": null,
    "poll": null,
    "edited": false
}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

提取 YouTube 频道社区源数据 的相关文章

随机推荐