HTTP
getリクエストでパラメーターを渡すことは可能ですか?もしそうなら、どうすればいいですか? HTTP
post requstを見つけました( link )。その例では、文字列postData
がWebサーバーに送信されます。代わりにgetを使用して同じことをしたいと思います。 GoogleはHTTP
get here でこの例を見つけました。ただし、パラメーターはWebサーバーに送信されません。
GETリクエストでは、クエリ文字列の一部としてパラメーターを渡します。
string url = "http://somesite.com?var=12345";
私の好ましい方法はこれです。エスケープと解析を処理します。
WebClient webClient = new WebClient();
webClient.QueryString.Add("param1", "value1");
webClient.QueryString.Add("param2", "value2");
string result = webClient.DownloadString("http://theurl.com");
最初のWebClient
は使いやすいです。 GET引数はクエリ文字列で指定されます-唯一の秘trickは、値をエスケープすることを忘れないことです:
string address = string.Format(
"http://foobar/somepage?arg1={0}&arg2={1}",
Uri.EscapeDataString("escape me"),
Uri.EscapeDataString("& me !!"));
string text;
using (WebClient client = new WebClient())
{
text = client.DownloadString(address);
}
WebRequestオブジェクトは、私にはあまりにも多くの作業のようです。 WebClientコントロールを使用することを好みます。
この関数を使用するには、パラメーターとリクエストヘッダーを保持する2つのNameValueCollectionを作成するだけです。
次の機能を検討してください。
private static string DoGET(string URL,NameValueCollection QueryStringParameters = null, NameValueCollection RequestHeaders = null)
{
string ResponseText = null;
using (WebClient client = new WebClient())
{
try
{
if (RequestHeaders != null)
{
if (RequestHeaders.Count > 0)
{
foreach (string header in RequestHeaders.AllKeys)
client.Headers.Add(header, RequestHeaders[header]);
}
}
if (QueryStringParameters != null)
{
if (QueryStringParameters.Count > 0)
{
foreach (string parm in QueryStringParameters.AllKeys)
client.QueryString.Add(parm, QueryStringParameters[parm]);
}
}
byte[] ResponseBytes = client.DownloadData(URL);
ResponseText = Encoding.UTF8.GetString(ResponseBytes);
}
catch (WebException exception)
{
if (exception.Response != null)
{
var responseStream = exception.Response.GetResponseStream();
if (responseStream != null)
{
using (var reader = new StreamReader(responseStream))
{
Response.Write(reader.ReadToEnd());
}
}
}
}
}
return ResponseText;
}
必要に応じて、クエリ文字列パラメーターをNameValueCollectionとして追加します。
NameValueCollection QueryStringParameters = new NameValueCollection();
QueryStringParameters.Add("id", "123");
QueryStringParameters.Add("category", "A");
Httpヘッダー(必要な場合)をNameValueCollectionとして追加します。
NameValueCollection RequestHttpHeaders = new NameValueCollection();
RequestHttpHeaders.Add("Authorization", "Basic bGF3c2912XBANzg5ITppc2ltCzEF");
URLを介して直接値を渡すこともできます。
メソッドpublic static void calling(string name){....}
を呼び出したい場合
それからusingHttpWebRequest webrequest = (HttpWebRequest)WebRequest.Create("http://localhost:****/Report/calling?name=Priya); webrequest.Method = "GET"; webrequest.ContentType = "application/text";
を呼び出す必要があります
URLで?Object = value
を使用していることを確認してください