Quantcast
Channel: Active questions tagged youtube-api - Stack Overflow
Viewing all articles
Browse latest Browse all 3831

I want to display all videoId via multiple channel id in youtube data API in python

$
0
0
channel_id=['UCiT9RITQ9PW6BhXK0y2jaeg','UC7cs8q-gJRlGwj4A8OmCmXg','UC2UXDak6o7rBm23k3Vv5dww']request = youtube.search().list(        part='id',        channelId="UCiT9RITQ9PW6BhXK0y2jaeg",        type='video',        order='date',        maxResults=10    )

I am able to see all videoId if i choose one channelId.In keyword parameter (channelId) take string not list so i did this

request = youtube.search().list(        part='id',        channelId=','.join(channel_ids),        type='video',        order='date',        maxResults=10    ){'kind': 'youtube#searchListResponse', 'etag': 'O3-nwicpOKLtnp0e6OBdRVSWFTA', 'regionCode': 'IN', 'pageInfo': {'totalResults': 0, 'resultsPerPage': 0}, 'items': []}

Can you please check what's the issue.


Viewing all articles
Browse latest Browse all 3831

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>