WebRequestの本文データを設定する


122

ASP.NETでWebリクエストを作成していて、大量のデータを本文に追加する必要があります。それ、どうやったら出来るの?

var request = HttpWebRequest.Create(targetURL);
request.Method = "PUT";
response = (HttpWebResponse)request.GetResponse();

回答:


107

HttpWebRequest.GetRequestStream

http://msdn.microsoft.com/en-us/library/d4cek6cc.aspxからのコード例

string postData = "firstone=" + inputData;
ASCIIEncoding encoding = new ASCIIEncoding ();
byte[] byte1 = encoding.GetBytes (postData);

// Set the content type of the data being posted.
myHttpWebRequest.ContentType = "application/x-www-form-urlencoded";

// Set the content length of the string being posted.
myHttpWebRequest.ContentLength = byte1.Length;

Stream newStream = myHttpWebRequest.GetRequestStream ();

newStream.Write (byte1, 0, byte1.Length);

私自身のコードの1つから:

var request = (HttpWebRequest)WebRequest.Create(uri);
request.Credentials = this.credentials;
request.Method = method;
request.ContentType = "application/atom+xml;type=entry";
using (Stream requestStream = request.GetRequestStream())
using (var xmlWriter = XmlWriter.Create(requestStream, new XmlWriterSettings() { Indent = true, NewLineHandling = NewLineHandling.Entitize, }))
{
    cmisAtomEntry.WriteXml(xmlWriter);
}

try 
{    
    return (HttpWebResponse)request.GetResponse();  
}
catch (WebException wex)
{
    var httpResponse = wex.Response as HttpWebResponse;
    if (httpResponse != null)
    {
        throw new ApplicationException(string.Format(
            "Remote server call {0} {1} resulted in a http error {2} {3}.",
            method,
            uri,
            httpResponse.StatusCode,
            httpResponse.StatusDescription), wex);
    }
    else
    {
        throw new ApplicationException(string.Format(
            "Remote server call {0} {1} resulted in an error.",
            method,
            uri), wex);
    }
}
catch (Exception)
{
    throw;
}

こんにちはTorbjorn、私は 'request.GetResponse();'を取得できるようにリクエストを使用していますが、上記の例ではどのように機能しますか?
William Calleja

GetRequestStream()を呼び出すと、サーバーが呼び出されます。したがって、上記の例の最後に追加する必要があります。
Torbjörnハンソン

1
デバッグ目的でリクエストオブジェクト内の全文を表示する方法はありますか?シリアル化してStreamReaderを使用してみましたが、どうしてもリクエストに書き込んだばかりのデータが表示されません。
ジェームズ

ファンがおもしろい-素晴らしい!

@ジェームズ、フィドラーまたはWiresharkを使用して、本文を含む完全なリクエストを表示できます。
RayLoveless

49

更新

私の他のSOの答えを見てください。


元の

var request = (HttpWebRequest)WebRequest.Create("https://example.com/endpoint");

string stringData = ""; // place body here
var data = Encoding.Default.GetBytes(stringData); // note: choose appropriate encoding

request.Method = "PUT";
request.ContentType = ""; // place MIME type here
request.ContentLength = data.Length;

var newStream = request.GetRequestStream(); // get a ref to the request body so it can be modified
newStream.Write(data, 0, data.Length);
newStream.Close();

何か不足していますか?httpWReq.Content = newStreamのように; newRequestオブジェクトをwebRequestで使用していません。
ヨーグルト2015年

4
@Yogurtuの完全性に関する質問に答えるために、リクエストStreamnewStream指すオブジェクト はリクエストの本文に直接書き込みます。への呼び出しによってアクセスされますHttpWReq.GetRequestStream()。リクエストで他に何も設定する必要はありません。
MojoFilter 2015

0

このトピックの答えはすべて素晴らしいです。しかし、私は別のものを提案したいと思います。ほとんどの場合、APIが与えられていて、それをC#プロジェクトに入れたいと考えています。Postmanを使用して、そこでapi呼び出しをセットアップおよびテストできます。それが適切に実行されたら、「コード」をクリックするだけで、作業中のリクエストがc#スニペットに書き込まれます。このような:

var client = new RestClient("https://api.XXXXX.nl/oauth/token");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Basic   N2I1YTM4************************************jI0YzJhNDg=");
request.AddHeader("Content-Type", "application/x-www-form-urlencoded");
request.AddHeader("Content-Type", "application/x-www-form-urlencoded");
request.AddParameter("grant_type", "password");
request.AddParameter("username", "development+XXXXXXXX-admin@XXXXXXX.XXXX");
request.AddParameter("password", "XXXXXXXXXXXXX");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

上記のコードは、簡単にインストールできるnugetパッケージRestSharpに依存しています。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.