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
cr...@brandwatch.com <cr...@brandwatch.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
Hello, is there a minimum threshold for reporting subscribers gained/lost by Country metrics?
If I fetch subscribers gained/lost I receive values but then I do it with dimensions=country I get 0 for all response data
- API request with parameters used (DO NOT include your credential)
curl --location '
--header 'Accept: application/json'
- Result (copy and paste a JSON response you received)
{
"kind": "youtubeAnalytics#resultTable",
"columnHeaders": [
{
"name": "country",
"columnType": "DIMENSION",
"dataType": "STRING"
},
{
"name": "subscribersGained",
"columnType": "METRIC",
"dataType": "INTEGER"
},
{
"name": "subscribersLost",
"columnType": "METRIC",
"dataType": "INTEGER"
}
],
"rows": [
[
"AE",
0,
0
],
[
"AU",
0,
0
],
[
"BD",
0,
0
],
[
"CA",
0,
0
],
[
"CY",
0,
0
],
[
"DE",
0,
0
],
[
"FR",
0,
0
],
[
"GB",
0,
0
],
[
"ID",
0,
0
],
[
"IN",
0,
0
],
[
"IQ",
0,
0
],
[
"IT",
0,
0
],
[
"KH",
0,
0
],
[
"KR",
0,
0
],
[
"MO",
0,
0
],
[
"MY",
0,
0
],
[
"TH",
0,
0
],
[
"US",
0,
0
],
[
"VN",
0,
0
]
]
}
- Expected result
Something with values, everything is 0 even though the subscribers gained/lost is returning data per day
- Is it 100% reproducible?
yes
- Reproducible API explorer link