从帖子网址C#获取数据

时间:2014-03-31 13:47:23

标签: c# html json post

我有一个帖子网址,当我用fiddler解析网址时,它可以将数据作为JSON格式返回

如何在C#

中获取JSON数据中的ID

谢谢,我尝试在WebClient中使用一些函数,但是没有结果。

由于

1 个答案:

答案 0 :(得分:0)

试试这个

var body = HttpContext.Current.Items["RequestBody"].ToString();

<强>更新

试试这个

            var url =
            "https://secure.reservation-booking-system.com/beapi/rest/rsearch/hotelinfo?hotelId=18234&format=json&lang=fr-fr&domain=www.l-hotel.com";

        using (var webclient = new WebClient()){

            //Add data to body
            var values = new NameValueCollection();
            values.Add("hotelId", "18234");
            values.Add("format", "json");
            values.Add("lang", "fr-fr");
            values.Add("domain", "www.l-hotel.com");

            //Make request
            var response = webclient.UploadValues(url, values);

           //read Response
            var responseBody = Encoding.ASCII.GetString(response);
    }