I am trying to get number of followers of a page programmatically either of exact number (eg 521356) or (521K) would do.
I have tried download data to download the entire page but I couldn't seem to find number of followers
System.Net.WebClient wc = new System.Net.WebClient();
byte[] raw = wc.DownloadData("https://www.instagram.com/gallery.delband/");
string webData = System.Text.Encoding.UTF8.GetString(raw);
textBox1.Text = webData;
I would like to be able to get number of followers but I can't find the data using web browser method.