im looking how to find .mp4 code on the website.
When i use just this code :
string urlAddress = "https://narutoboruto.wbijam.pl/odtwarzacz-mxlRnPah_UK_LdVDHkN4ShzC0iAgUSZeZxx.html";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(urlAddress);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
if (response.StatusCode == HttpStatusCode.OK)
{
Stream receiveStream = response.GetResponseStream();
StreamReader readStream = null;
if (String.IsNullOrWhiteSpace(response.CharacterSet))
readStream = new StreamReader(receiveStream);
else
readStream = new StreamReader(receiveStream, Encoding.GetEncoding(response.CharacterSet));
string data = readStream.ReadToEnd();
response.Close();
readStream.Close();
Console.WriteLine(data);
}
I get source of the page but i don't see there .mp4 link .
When i just do it manually in chrome i see link .mp4
Example shows :
What do i need to do to get this link? What am i doing wrong here? Please show some example how can i get this data.