Это, как я называю обслуживание с .NET:Почему я получаю ошибку 411 Length required?
var requestedURL = "https://accounts.google.com/o/oauth2/token?code=" + code + "&client_id=" + client_id + "&client_secret=" + client_secret + "&redirect_uri=" + redirect_uri + "&grant_type=authorization_code";
HttpWebRequest authRequest = (HttpWebRequest)WebRequest.Create(requestedURL);
authRequest.ContentType = "application/x-www-form-urlencoded";
authRequest.Method = "POST";
WebResponse authResponseTwitter = authRequest.GetResponse();
, но когда этот метод вызывается, я получаю:
Exception Details: System.Net.WebException: The remote server returned an error: (411) Length Required.
что я должен делать?
Не могли бы вы обратиться к моему вопросу «http://stackoverflow.com/questions/35308945/accessing-sftp-url-from-console-application-using-c-sharp»? У меня такая же проблема. Я пытаюсь нажать SFTP-адрес –