collab-community / coding-youtubers

A repo which advises you on which coding YouTubers, should you watch. It will really be helpful in starting your coding journey!
https://collab-community.github.io/coding-youtubers
MIT License
13 stars 14 forks source link

List number of subscribers near the channels name. #21

Open KendallDoesCoding opened 2 years ago

KendallDoesCoding commented 2 years ago

Is there a API which can list the number of subscribers a channel has within a Markdown file? The abbreviated amount not real time count.

I don't think there is.

Please let me know @vikasganiga05.

mukulkandhari commented 2 years ago

Here's a 'simple' way to get the YouTube subscriber number from Google's Youtube API v3:

Follow this: https://stackoverflow.com/questions/70714671/how-do-i-get-a-subscriber-count-from-youtube-api-by-channel-name

These are the only metrics that the analytics api provides:

KendallDoesCoding commented 2 years ago

Here's a 'simple' way to get the YouTube subscriber number from Google's Youtube API v3:

  • Go to https://console.developers.google.com/apis/library
  • Log in with your Google account.
  • Next to the logo click on 'Project' and 'Create project'. Name it whatever you want and click on 'Create'.
  • Wait until the project is created, the page will switch to it by itself, it will take a couple of seconds up to a minute. Once it's done it will be selected next to the logo.
  • Once it's created and selected, click on 'Credentials' from the menu on the left.
  • Click on 'Create Credentials' and choose 'API Key'. You can restrict it to specific IPs, or types of requests (website, android, ios etc.) if you want, it's safer that way.
  • Copy your API KEY

Follow this: https://stackoverflow.com/questions/70714671/how-do-i-get-a-subscriber-count-from-youtube-api-by-channel-name

These are the only metrics that the analytics api provides:

  • annotationClickThroughRate
  • annotationCloseRate
  • verageViewDuration
  • comments
  • dislikes
  • estimatedMinutesWatched
  • estimatedRevenue
  • likes
  • shares
  • subscribersGained
  • subscribersLost
  • viewerPercentage
  • views

Hey Mukul, thanks a lot for your help on this, but will this work for .md (markdown script) files?

fluentmoheshwar commented 2 years ago

Here's a 'simple' way to get the YouTube subscriber number from Google's Youtube API v3:

  • Go to https://console.developers.google.com/apis/library
  • Log in with your Google account.
  • Next to the logo click on 'Project' and 'Create project'. Name it whatever you want and click on 'Create'.
  • Wait until the project is created, the page will switch to it by itself, it will take a couple of seconds up to a minute. Once it's done it will be selected next to the logo.
  • Once it's created and selected, click on 'Credentials' from the menu on the left.
  • Click on 'Create Credentials' and choose 'API Key'. You can restrict it to specific IPs, or types of requests (website, android, ios etc.) if you want, it's safer that way.
  • Copy your API KEY

Follow this: https://stackoverflow.com/questions/70714671/how-do-i-get-a-subscriber-count-from-youtube-api-by-channel-name These are the only metrics that the analytics api provides:

  • annotationClickThroughRate
  • annotationCloseRate
  • verageViewDuration
  • comments
  • dislikes
  • estimatedMinutesWatched
  • estimatedRevenue
  • likes
  • shares
  • subscribersGained
  • subscribersLost
  • viewerPercentage
  • views

Hey Mukul, thanks a lot for your help on this, but will this work for .md (markdown script) files?

try this https://stackoverflow.com/questions/2754391/embed-javascript-in-markdown

KendallDoesCoding commented 2 years ago

Here's a 'simple' way to get the YouTube subscriber number from Google's Youtube API v3:

  • Go to https://console.developers.google.com/apis/library
  • Log in with your Google account.
  • Next to the logo click on 'Project' and 'Create project'. Name it whatever you want and click on 'Create'.
  • Wait until the project is created, the page will switch to it by itself, it will take a couple of seconds up to a minute. Once it's done it will be selected next to the logo.
  • Once it's created and selected, click on 'Credentials' from the menu on the left.
  • Click on 'Create Credentials' and choose 'API Key'. You can restrict it to specific IPs, or types of requests (website, android, ios etc.) if you want, it's safer that way.
  • Copy your API KEY

Follow this: https://stackoverflow.com/questions/70714671/how-do-i-get-a-subscriber-count-from-youtube-api-by-channel-name These are the only metrics that the analytics api provides:

  • annotationClickThroughRate
  • annotationCloseRate
  • verageViewDuration
  • comments
  • dislikes
  • estimatedMinutesWatched
  • estimatedRevenue
  • likes
  • shares
  • subscribersGained
  • subscribersLost
  • viewerPercentage
  • views

Hey Mukul, thanks a lot for your help on this, but will this work for .md (markdown script) files?

try this https://stackoverflow.com/questions/2754391/embed-javascript-in-markdown

Thanks a ton! Can you work on this issue @fluentmoheshwar or @vikasganiga05?

KendallDoesCoding commented 2 years ago

Awaiting your reply on this @fluentmoheshwar , @vikasganiga05

fluentmoheshwar commented 2 years ago

I am still learning js. so i am not an expert in this things

KendallDoesCoding commented 2 years ago

oh, i don't even know js haha

On Fri, 12 Aug 2022 at 12:55, Moheshwar Amarnath Biswas < @.***> wrote:

I am still learning js. so i am not an expert in this things

— Reply to this email directly, view it on GitHub https://github.com/collab-community/coding-youtubers/issues/21#issuecomment-1212810581, or unsubscribe https://github.com/notifications/unsubscribe-auth/AUGJUTMEV2TG7GXMDYNWZ5LVYX37XANCNFSM55QBT6AA . You are receiving this because you authored the thread.Message ID: @.***>

fluentmoheshwar commented 2 years ago

We will try to do it anyway. Cause the internet is now mostly ctrl+c ctrl+v

fluentmoheshwar commented 2 years ago

A better solution is to use HTML instead of MD

KendallDoesCoding commented 2 years ago

A better solution is to use HTML instead of MD

Should we do this @Agrim-Sharma174 @vikasganiga05 @Adarsh-jaiss? @collab-community/coding-youtubers

Agrim-Sharma174 commented 2 years ago

Yes, I was feeling the same... It would be easier with HTML, let's do it!

fluentmoheshwar commented 2 years ago

A better solution is to use HTML instead of MD

Should we do this @Agrim-Sharma174 @vikasganiga05 @Adarsh-jaiss? @collab-community/coding-youtubers

I just realized that maintaining HTML is harder than MD. Also we will loss Jekyll Themes.

KendallDoesCoding commented 2 years ago

A better solution is to use HTML instead of MD

Should we do this @Agrim-Sharma174 @vikasganiga05 @Adarsh-jaiss? @collab-community/coding-youtubers

I just realized that maintaining HTML is harder than MD. Also we will loss Jekyll Themes.

True, we will still have to evaluate.

KendallDoesCoding commented 2 years ago

Should I close this issue and will reopen in future @collab-community/coding-youtubers?

fluentmoheshwar commented 2 years ago

Should I close this issue and will reopen in future @collab-community/coding-youtubers?

I am fine with that.

Abhinavkar commented 2 years ago

A better solution is to use HTML instead of MD

Should we do this @Agrim-Sharma174 @vikasganiga05 @Adarsh-jaiss? @collab-community/coding-youtubers

I just realized that maintaining HTML is harder than MD. Also we will loss Jekyll Themes.

Actually it will be easy in themes we can't change much but we can do in html css part

fluentmoheshwar commented 2 years ago

A better solution is to use HTML instead of MD

Should we do this @Agrim-Sharma174 @vikasganiga05 @Adarsh-jaiss? @collab-community/coding-youtubers

I just realized that maintaining HTML is harder than MD. Also we will loss Jekyll Themes.

Actually it will be easy in themes we can't change much but we can do in html css part

do it in your own repo. I will be there for help.

Abhinavkar commented 2 years ago

A better solution is to use HTML instead of MD

Should we do this @Agrim-Sharma174 @vikasganiga05 @Adarsh-jaiss? @collab-community/coding-youtubers

I just realized that maintaining HTML is harder than MD. Also we will loss Jekyll Themes.

Actually it will be easy in themes we can't change much but we can do in html css part

do it in your own repo. I will be there for help.

Same here i m also there.

fluentmoheshwar commented 2 years ago

?

Favalcodes commented 2 years ago

Hi @KendallDoesCoding is this issue still open? can I try it out?

HIMANSHIKSHARMA commented 1 year ago

Hey! is this issue resolved?

Atharv-Nalwade commented 1 year ago

Hey Folks, Searched on the internet and I might have found a probable solution, Also if the issue is not yet resolved let me know. If allowed this could be my first open source contribution

Abhinavkar commented 1 year ago

Hey Folks, Searched on the internet and I might have found a probable solution, Also if the issue is not yet resolved let me know. If allowed this could be my first open source contribution

Go For it