これは私が.NETでサービスを呼び出す方法です:なぜ411長さのエラーが発生するのですか?
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 URLをヒットしようとしています –