1

我需要在我的 asp.net 网站上获取 youtube 频道的订阅者数量,我已经搜索了文档(https://developers.google.com/youtube/2.0/developers_guide_protocol_activity_feeds),我知道我必须把这个:

http://gdata.youtube.com/feeds/api/users/PageName

但即使我在浏览器中打开它也不会提供任何帮助,将不胜感激。

有我可以使用的特殊库或 api 吗?

4

1 回答 1

1

您可以执行以下操作:

System.Net.WebClient wb = new System.Net.WebClient();
string str = wb.DownloadString("http://gdata.youtube.com/feeds/api/users/TheNewYorkTimes");
Response.Write(getCount(str));

public static string getCount(string video)
        {
            if (video.Contains("="))
            {
                string str = "subscriberCount='";
                string videoid = video.Substring(video.IndexOf("subscriberCount") + str.Length);
                if (videoid.Contains("'"))
                {
                    videoid = videoid.Remove(videoid.IndexOf("'"));
                    return videoid;
                }
                else
                {
                    return "";
                }
            }
            else
            {
                return "";
            }
        }
于 2012-11-14T13:56:33.170 回答