I've come across many articles (no. 14 on this, and no. 3 on this, for example) advising the addition of
, partner
at the end of a query to return only official videos, i.e. videos from partner channels. However, such a query does not seem to work on YouTube. It just treats "partner" as a part of the query and returns results according to that. Nor are there any parameters listed on the v3 documentation. Any workarounds?
My query looks like
query = 'Whatever'
params = {
"q": query,
"part": "id,snippet",
"type":"video"
}
videos = youtube_api.search().list(**params).execute()