gpt4 book ai didi

python - 如何获取所有 channel ID - youtube api v3

转载 作者:行者123 更新时间:2023-12-01 03:39:39 24 4
gpt4 key购买 nike

我想知道是否可以获取您的其他 channel ID,下面的代码仅获取一个 channel ID(我在授权期间点击的一个 channel )。

 def gaining_channelID(youtube):
channels_list_response = youtube.channels().list(
part="id",
mine=True
).execute()
channelid= ""

for list in channels_list_response["items"]:
channelid= list["id"]
print(channelid)
return channelid

我可以将视频上传到您的其他 channel 吗?或者我是否必须再次进行授权并选择要上传到的其他 channel ?

现在看来这是唯一的办法

我一直在看这个,它是这么说的,但想知道它是否已经改变(因为这是两年前提出的问题)

YouTube API v3 get all channels associated with a logged in user

最佳答案

当您向 YouTube API 进行身份验证时,您可以选择一个 channel 。就我而言,我认为有 6 个 channel 。如果我对第一个 channel 进行身份验证,我将只能访问第一个 channel 的数据。

是的,您需要对每个 channel 进行身份验证。您获得的访问权限将是特定于 channel 的。

关于python - 如何获取所有 channel ID - youtube api v3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39828449/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com