Assigned
Status Update
Comments
sa...@ageofmedia.net <sa...@ageofmedia.net> #3
Hi,
Thank you for quick response. Yes, I actually copied curl code above from the API explorer.
I also tried with Python code below:
request = youtube.search().list(
part="snippet",
maxResults=50,
order="viewCount",
publishedAfter="2024-09-01T00:00:00Z",
q="artificial intelligence",
videoPaidProductPlacement="true",
)
response = request.execute()
return response
This also gave me invalid parameter error:
TypeError: Got an unexpected keyword argument videoPaidProductPlacement
sn...@google.com <sn...@google.com> #4
Hello,
I wanted to check if there are any updates regarding this issue, as it is critical for my application. Could you share whether it's planned to be resolved and if there is an estimated timeline for a fix?
I would greatly appreciate any insights you can provide.
Thank you for your time and support.
Description
When using the GroupItems: insert method, I receive the following error:
{
"error": {
"code": 403,
"message": "Group contains maximum number of items.",
"errors": [
{
"message": "Group contains maximum number of items.",
"domain": "youtube.groupItem",
"reason": "groupContainsMaximumNumberOfItems"
}
]
}
}
This occurs when the group contains 294 videos. However, when adding videos manually via YouTube Studio, I can add up to 500 videos in the same group.
Is there a reason why the API enforces a lower limit than YouTube Studio? If this is an intended restriction, could you clarify the exact API limit for group items?
Thanks!