码迷,mamicode.com
首页 > Web开发 > 详细

Asp.Net利用HttpWebRequest发送复杂的HTTP GET请求并且取回响应

时间:2014-10-14 15:44:38      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   使用   ar   strong   sp   

最近在学习微信公众平台的开发用到

使用接口创建自定义菜单后,开发者还可使用接口查询自定义菜单的结构。

请求说明

http请求方式:GET
https://api.weixin.qq.com/cgi-bin/menu/get?access_token=ACCESS_TOKEN

 

得到响应后的菜单(如下代码) 

 1 string uri = "https://api.weixin.qq.com/cgi-bin/menu/get?access_token="+AccessToken.IsExistAccess_Token();
 2 var hwrequest = WebRequest.Create(uri) as HttpWebRequest;
 3 hwrequest.Method = "GET";
 4 hwrequest.Timeout = 5000;
 5 
 6 //返回来自 Internet 资源的响应。
 7 HttpWebResponse res = hwrequest.GetResponse() as HttpWebResponse;
 8 //读取流
 9 Stream outs = res.GetResponseStream();
10 StreamReader sr = new StreamReader(outs,Encoding.UTF8);
11 string content = sr.ReadToEnd();

 

 

 

 

 

Asp.Net利用HttpWebRequest发送复杂的HTTP GET请求并且取回响应

标签:style   blog   http   color   os   使用   ar   strong   sp   

原文地址:http://www.cnblogs.com/cyclone77/p/4024306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!