简体   繁体   中英

How to call restful service with args in asp.net web form?

I want to use from Restful service in asp.net webform and C#. So I used HttpWebRequest and I could got Token successfully. But I can't call Restful service with parameter. Using this code I tried to send BrokerId as a parameter but I think this is wrong because that service show error authorization:

private void RemainInq(string Auth)
{
string Address = @"http://10.19.252.21:5003/Rest/Topup/RemainCreditInquiry";
Uri UriAddress = new Uri(Address);
var PostParam = "BrokerId=13000303";
var data = Encoding.ASCII.GetBytes(PostParam);
HttpWebRequest req = WebRequest.Create(UriAddress) as HttpWebRequest;
req.Method = "POST";
req.ContentType = "application/json";
req.Accept = "gzip,deflate";
req.ContentLength = data.Length;
req.Host = "10.19.252.21:5003";
req.Headers.Add("Authorization", Auth);
req.ContentLength = data.Length;
using (var strem = req.GetRequestStream())
{
strem.Write(data, 0, data.Length);
}
HttpWebResponse resp = req.GetResponse() as HttpWebResponse;
Encoding enc = System.Text.Encoding.GetEncoding(1252);
StreamReader loResponseStream = new StreamReader(resp.GetResponseStream(), enc);
string Response = loResponseStream.ReadToEnd();
string[] s = Response.Split(',');
for (int i = 0; i < s.Count(); ++i)
s[i] = s[i].Substring(s[i].IndexOf(":") + 2, s[i].LastIndexOf('"') - 
s[i].IndexOf(":") - 2);
loResponseStream.Close();
resp.Close();
}

Finally I could find answer.

private string[] CallSaleProvider(string YourParam1,string YourParam2)

    {

        var httpWebRequest = (HttpWebRequest)WebRequest.Create("http://YourAddress");

        httpWebRequest.ContentType = "application/json";

        httpWebRequest.Method = "POST";

        httpWebRequest.Headers.Add("Authorization", Auth);

        using (var streamWriter = new

        StreamWriter(httpWebRequest.GetRequestStream()))

        {

            string json = new JavaScriptSerializer().Serialize(new

            {

                YourParam=Value, YourParam=value,YourParam=value


            });

            streamWriter.Write(json);

        }

        string result;

        var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();

        using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))

        {

            result = streamReader.ReadToEnd();

        }

        string[] s = result.Split(',');

        for (int i = 0; i < s.Count(); ++i)

            s[i] = s[i].Substring(s[i].IndexOf(":") + 2, s[i].LastIndexOf('"') - s[i].IndexOf(":") - 2);


        httpResponse.Close();

        return s;

    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM