I was wondering if it was possible to gain your other channel-IDs, this code under is only getting one channelID (the one channel i clicked on during the authorization).
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
And can i upload videos to your other channels? Or do i HAVE to go through the the authorization again and choose a different channel i want to upload to?
right now it seems like that's the only way
ive been watching this and it said so, but was wondering if it had changed (since that was 2 years ago the question was asked)
YouTube API v3 get all channels associated with a logged in user