Status Update
Comments
kr...@fivetran.com <kr...@fivetran.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
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.
kr...@fivetran.com <kr...@fivetran.com> #5
sn...@google.com <sn...@google.com> #6
Thanks for sharing the details! I'm going to open a bug report with the internal teams for further investigation. Will reach back as soon as I hear back on this.
kr...@fivetran.com <kr...@fivetran.com> #7
sn...@google.com <sn...@google.com> #8
I'm still waiting on updates from the internal teams on this issue with metrics. Will reach back as soon as I have one.
Description
1. According to the official documentation
stoppedWatching should have 0 value when there is no data for the particular segment. But if we include them in our
request, all segments with 0 metrics are completely excluded.
2. We recieve totalSegmentImpressions metric 0 value for all segments even when they have non-zero values in
startedWatching, stoppedWatching metrics.
Could you please check our requests and recommend how should we use them properly?