Как использовать WebRequest для POST некоторые данные и считать ответ?

Потребность иметь сервер делает POST к API, как я добавляю, что POST оценивает объекту WebRequest и как я отправляю его и получаю ответ (это будет строка)?

Мне нужны к POST ДВА значения, и иногда больше, я вижу в этих примерах, где он говорит что строковые постданные = "строка для регистрации"; но как я позволяю вещи, которую я ОТПРАВЛЯЮ, чтобы знать, что существует несколько значений формы?

19
задан MetaGuru 18 May 2010 в 20:34
поделиться

2 ответа

Из MSDN

// Create a request using a URL that can receive a post. 
WebRequest request = WebRequest.Create ("http://contoso.com/PostAccepter.aspx ");
// Set the Method property of the request to POST.
request.Method = "POST";
// Create POST data and convert it to a byte array.
string postData = "This is a test that posts this string to a Web server.";
byte[] byteArray = Encoding.UTF8.GetBytes (postData);
// Set the ContentType property of the WebRequest.
request.ContentType = "application/x-www-form-urlencoded";
// Set the ContentLength property of the WebRequest.
request.ContentLength = byteArray.Length;
// Get the request stream.
Stream dataStream = request.GetRequestStream ();
// Write the data to the request stream.
dataStream.Write (byteArray, 0, byteArray.Length);
// Close the Stream object.
dataStream.Close ();
// Get the response.
WebResponse response = request.GetResponse ();
// Display the status.
Console.WriteLine (((HttpWebResponse)response).StatusDescription);
// Get the stream containing content returned by the server.
dataStream = response.GetResponseStream ();
// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader (dataStream);
// Read the content.
string responseFromServer = reader.ReadToEnd ();
// Display the content.
Console.WriteLine (responseFromServer);
// Clean up the streams.
reader.Close ();
dataStream.Close ();
response.Close ();

Учтите, что информация должна отправляться в формате ключ1 = значение1 & ключ2 = значение2

30
ответ дан 30 November 2019 в 02:29
поделиться

Более мощный и гибкий пример можно найти здесь: Загрузка файла C # с полями формы, файлами cookie и заголовками

0
ответ дан 30 November 2019 в 02:29
поделиться
Другие вопросы по тегам:

Похожие вопросы: