Status Update
Comments
ne...@gmail.com <ne...@gmail.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...@powermyanalytics.com <sn...@powermyanalytics.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.
sn...@google.com <sn...@google.com> #5
The reason you're seeing this 403 error is because, estimated revenue metrics are not currently supported for channel reports. As a result, the
Additionally, you need to make sure to not use service account. Service accounts do not work for YouTube Data API calls because service accounts require an associated YouTube channel, and you cannot associate new or existing channels with service accounts. If you use a service account to call the YouTube Data API, the API server returns an error. If the account you're using is not a service account, and you are still getting the error, it might be because: You didn't add yourself as a test user in the Google Cloud Project --> OAuth consent screen.
sn...@powermyanalytics.com <sn...@powermyanalytics.com> #6
Thank you for your reply.
We can obtain data for this channel's channels and videos endpoints
via the Data API.
In terms of monetary scope, we are unable to obtain data for any
metrics/dimensions using the Analytics API, including daily views.
Please let me know if you need more information.
On Mon, Dec 23, 2024 at 8:35 PM <buganizer-system@google.com> wrote:
--
Power My Analytics
Automate your marketing reports!
+1 (800) 746-3083 ext. 123
sn...@google.com <sn...@google.com> #7
This is most likely because of the incorrect account selected during authentication. You would need to make sure to pick the correct brand account associated to the channel during the authentication step and not the regular youtube account.
Here is an article on how to check for the brand account:
sn...@powermyanalytics.com <sn...@powermyanalytics.com> #8
I am utilizing my account to obtain analytics data for the company channel.
My account has been set as the channel's Manager (see screenshot).
The channel is a brand account (see attached screenshot).
I chose the company channel from my account (screenshot attached).
When I attempted to access the analytics data for this channel, I received
the Forbidden error message.
The request URL is '
'
On Mon, Dec 30, 2024 at 9:33 PM <buganizer-system@google.com> wrote:
--
Power My Analytics
Automate your marketing reports!
+1 (800) 746-3083 ext. 123
sn...@powermyanalytics.com <sn...@powermyanalytics.com> #9
Is there any update on how we can solve the issue?
On Tue, Dec 31, 2024 at 11:12 AM Snir Yadid <snir.yadid@powermyanalytics.com>
wrote:
--
Power My Analytics
Automate your marketing reports!
+1 (800) 746-3083 ext. 123
sn...@powermyanalytics.com <sn...@powermyanalytics.com> #10
Is there any update on how we can solve the issue?
On Mon, Jan 13, 2025 at 7:06 PM Snir Yadid <snir.yadid@powermyanalytics.com>
wrote:
--
Power My Analytics
Automate your marketing reports!
+1 (800) 746-3083 ext. 123
Description
- Description: We are utilizing the YouTube analytics API to retrieve data for a brand channel that we have access to, but we are receiving a Forbidden message.
We have Owner permission for this channel.
Channel id: UClrPEXQIZ7BBAun6qf5U_sw
- API request with parameters used (DO NOT include your credential):
- Result:
{
code: 403,
message: 'Forbidden',
errors: [ { message: 'Forbidden', domain: 'global', reason: 'forbidden' } ]
}
- Expected result
To able to get the analytics data.
- Is it 100% reproducible?
Yes.
- Reproducible API explorer link