Dear All
I want to get list of all my videos Traffic Source like Searck Keywords , HashTag Pages , Channel Pages , Browse Features etc.
Thanks
Dear All
I want to get list of all my videos Traffic Source like Searck Keywords , HashTag Pages , Channel Pages , Browse Features etc.
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mayooran NavamanyPosted Jan 29, 2024, 2:26 PM
YouTube Studio:
Video Analytics:
Traffic Sources:
Specific Details:
Search Keywords:
HashTag Pages, Channel Pages, Browse Features:
Date Range Selection:
Remember, YouTube's analytics interface is regularly updated, so the exact steps and features might have changed. If you can't find the specific information you're looking for, consider checking YouTube's Help Center or Community for the latest information.
you can see this youtube also https://www.youtube.com/watch?v=doFhsdyH6R0
Jayraj ChhayaPosted Jan 29, 2024, 2:22 PM
To get the traffic source details from YouTube using Dot Net, you can utilize the YouTube Data API. This API allows you to interact with YouTube's features and retrieve various information about your videos, including traffic source details.
Here are the steps to achieve this:
Set up the YouTube Data API: First, you need to enable the YouTube Data API in the Google Developers Console and obtain the necessary credentials (API key or OAuth 2.0 credentials).
Install the Google.Apis.YouTube.v3 NuGet package: Open your Dot Net project in Visual Studio and install the
Google.Apis.YouTube.v3NuGet package. This package provides the necessary classes and methods to interact with the YouTube Data API.Authenticate and authorize: Depending on the type of credentials you obtained in step 1, you need to authenticate and authorize your application to access the YouTube Data API. This step ensures that you have the necessary permissions to retrieve the traffic source details.
Retrieve traffic source details: Once you have authenticated and authorized your application, you can use the
YouTubeServiceclass from theGoogle.Apis.YouTube.v3package to retrieve the traffic source details for your videos. You can make use of theVideos.Listmethod and specify thepartparameter asstatisticsto retrieve the statistics for your videos. Thestatisticsobject will contain information about the traffic sources.Here's an example code snippet to get you started:
Remember to replace
"YOUR_API_KEY"with your actual API key or use OAuth 2.0 credentials for authentication.