Assigned
Status Update
Comments
sn...@google.com <sn...@google.com> #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
ma...@gmail.com <ma...@gmail.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
- Description
The subscriptions/list API does not show my currently streaming subscriptions first, no matter what 'order' parameter is supplied. I know this is incorrect, as if I look at my subscriptions page:
- API request with parameters used (DO NOT include your credential)
GET
- Result (copy and paste a JSON response you received)
{
"items": [
{
"snippet": {
"title": "The Mighty Jingles"
}
},
{
"snippet": {
"title": "Valefisk"
}
},
{
"snippet": {
"title": "Perkins Builder Brothers"
}
},
{
"snippet": {
"title": "Well There's Your Problem Podcast"
}
},
{
"snippet": {
"title": "Bringus Studios"
}
}
]
}
- Expected result
{
"items": [
{
"snippet": {
"title": "Nerissa Ravencroft Ch. hololive-EN"
}
},
{
"snippet": {
"title": "ronillust"
}
},
"snippet": {
"title": "The Mighty Jingles"
}
},
{
"snippet": {
"title": "Valefisk"
}
},
{
"snippet": {
"title": "Perkins Builder Brothers"
}
},
{
"snippet": {
"title": "Well There's Your Problem Podcast"
}
},
{
"snippet": {
"title": "Bringus Studios"
}
}
]
}
- Is it 100% reproducible?
Yes
- Reproducible API explorer link