2017-02-01 6 views

答えて

2

System.Net.HttpWebRequestは知っておくべきクラスですが、これは簡単なサンプルです。詳細については、MSDNを参照してください。https://msdn.microsoft.com/en-us/library/system.net.httpwebrequest(v=vs.110).aspx

HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url); 
webRequest.Method = "POST"; 
webRequest.AllowAutoRedirect = true; 
webRequest.Timeout = 20 * 1000; 
webRequest.ContentType = "application/x-www-form-urlencoded"; 
webRequest.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"; 
webRequest.UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36"; 


//write the data to post request 
//Postdata : a=1&b=2&c=3 
byte[] buffer = Encoding.Default.GetBytes(Postdata); 
if (buffer != null) 
{ 
    webRequest.ContentLength = buffer.Length; 
    webRequest.GetRequestStream().Write(buffer, 0, buffer.Length); 
} 

WebResponse wr = webRequest.GetResponse() 
+0

申し訳ありません、現時点では機能しません。どのようにタイプがx-www-form-url-encodedであるPostdataを書きますか?文字列形式または辞書またはリストとして?すべての助けをありがとう! – MiRo

+0

注 'Postdata'は' Postdata:a = 1&b = 2&c = 3'という文字列です。 –

関連する問題