It is required to receive in the html line a code that is formed when clicking on the link https://username.imtqy.com/?action= "get"
I tried this:
string url = @"https://username.imtqy.com?action=""get"" "; string content = ""; using (var webClient = new WebClient()) { content = webClient.DownloadString(url).ToString(); }
But in content , the string that would be there at https://username.imtqy.com . Why is this happening and how to fix it?
PS When I click on this link, js code works that adds text to the page.