66

是否可以通过HTTPget 请求传递参数?如果是这样,我应该怎么做?我找到了一个HTTP帖子请求(链接)。在该示例中,字符串postData被发送到网络服务器。我想用get来做同样的事情。HTTP谷歌在get here上找到了这个例子。但是,不会将参数发送到 Web 服务器。

4

5 回答 5

145

我的首选方式是这样。它为您处理转义和解析。

WebClient webClient = new WebClient();
webClient.QueryString.Add("param1", "value1");
webClient.QueryString.Add("param2", "value2");
string result = webClient.DownloadString("http://theurl.com");
于 2013-06-20T16:59:18.807 回答
97

首先WebClient是更容易使用;GET 参数在查询字符串中指定 - 唯一的技巧是记住转义任何值:

        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);
        }
于 2009-02-05T07:27:08.210 回答
39

在 GET 请求中,您将参数作为查询字符串的一部分传递。

string url = "http://somesite.com?var=12345";
于 2009-02-05T07:20:53.433 回答
8

WebRequest 对象对我来说似乎工作量太大。我更喜欢使用 WebClient 控件。

要使用此函数,您只需要创建两个 NameValueCollections 来保存您的参数和请求标头。

考虑以下函数:

    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");
于 2014-07-09T15:51:54.520 回答
1

您也可以直接通过 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";

只需确保您 ?Object = value在 URL中使用

于 2017-04-19T19:13:57.787 回答