Why doesn’t authorization work on StackOverflow?
public class Http { public static byte[] Post(string uri, NameValueCollection pairs) { byte[] response = null; using (WebClient client = new WebClient()) { response = client.UploadValues(uri, pairs); } return response; } } //........................ var response = Http.Post("https://ru.stackoverflow.com/users/login", new NameValueCollection() { { "fkey", "Тут fkey лежит" }, { "ssrc", "head" }, { "email", "*******@gmail.com" }, { "password", "********" }, });