Я пытаюсь войти в Netflix с C #.У меня есть некоторый код, но я не слишком много возился с HttpWebRequest, поэтому любая помощь будет оценена.Спасибо!
private void Login()
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://www.netflix.com/login");
request.Method = "POST";
request.UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0";
request.ContentType = "application/x-www-form-urlencoded";
request.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
string postData = string.Format($"email={textEdit1.Text}&password={textEdit2.Text}&rememberMe=true&flow=websiteSignUp&mode=login&action=loginAction&withFields=email%2Cpassword%2CrememberMe%2CnextPage%2CshowPassword&authURL=+authUrl|1+&nextPage=https%3A%2F%2Fwww.netflix.com%2Fyouraccount&showPassword=");
WebResponse response = request.GetResponse();
MessageBox.Show(response.ToString());
response.Close();
}
Что я хочу знать, так это как я могу определить, был ли вход успешным или нет, может быть, показан в MessageBox?