How to find out the exact number of followers on youtube?

自作多情 提交于 2021-02-02 03:44:50

问题


I need to find out the exact number of subscribers on the channel via api.
The channel is not on my account, but I have the rights to watch. I need the exact amount shown on studio.youtube.com

I use

https://www.googleapis.com/youtube/v3/channels?part=statistics,snippet&mine=true&access_token=[your_access_token]

But it shows only a personal account, and if you replace "mine" => "managedByMe", I will see an error

Img error


回答1:


According to the official YouTube Data API docs, the only way to obtain the subscriber count of a given channel is through the following properties:

statistics.subscriberCount (unsigned long)
The number of subscribers that the channel has. This value is rounded down to three significant figures. Please see the Revision History or the YouTube Help Center for more details about how subscriber counts are rounded.

statistics.hiddenSubscriberCount (boolean)
Indicates whether the channel's subscriber count is publicly visible.

The number provided is rounded -- thus is not exact. Consequently, however unfortunate, is true that you cannot obtain the info you're looking for from the YouTube Data API.


According to this support post (the emphasis below is mine):

To create more consistency everywhere that we publicly display subscriber counts, starting in August 2019, we’ll begin showing the abbreviated subscriber number across all public YouTube surfaces. Third parties that use YouTube’s API Services will also access the same public facing counts you see on YouTube. Creators will still be able to see their exact number of subscribers in YouTube Studio.

The change will take place across YouTube and the public YouTube Data API Service. Creators will continue to see their full subscriber counts privately in YouTube Studio and YouTube Analytics.

Indeed exact numbers are shown only to creators within YouTube Studio or YouTube Analytics only.



来源:https://stackoverflow.com/questions/63536872/how-to-find-out-the-exact-number-of-followers-on-youtube

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!