1

I'm using YouTube Analytics API to allow users to connect with our application using their YouTube channel accounts. Now, after authorizing the user using OAuth2, I want to fetch the total number of videos uploaded by them on their account. However, I couldn't find any endpoint in YouTube Analytics API that could help me fetch that data. Is there a way to find the total uploaded videos for a channel using the Analytics API?

PS: I am aware of the public endpoint provided by YouTube Data API v3. However, I want to fetch that data for authorized users only.

Manas Chaturvedi
  • 5,210
  • 18
  • 52
  • 104

1 Answers1

0

I think you can get it from the YouTube Data API, by using the Channels:list. It also have a TRY IT! part where you can see the API request and response.

I found a video here, that fully explained how to get the list of uploaded video in the Channel.

Also try to check this related SO question that I think it can help you a lot.

Community
  • 1
  • 1
KENdi
  • 7,576
  • 2
  • 16
  • 31
  • I already mentioned in my post that I am not looking to use YouTube Data API for my purpose. I am looking for a solution using `YouTube Analytics API` only in my use case. – Manas Chaturvedi Apr 28 '16 at 16:00
  • I think it is not possible using YouTube Analytics API, that's why I recommended you to use Data API instead. Try to check the document for [YouTube Analytics API](https://developers.google.com/youtube/analytics/v1/channel_reports#retrieving-a-report) for you to understand the use/limit of this API. :) – KENdi Apr 29 '16 at 00:42