これは、.NET でサービスを呼び出す方法です。
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();
しかし、このメソッドが呼び出されると、次のようになります。
例外の詳細: System.Net.WebException: リモート サーバーがエラーを返しました: (411) 長さが必要です。
私は何をすべきか?