首页 > 代码库 > 如何在后台调用接口
如何在后台调用接口
string url = "http://localhost:12083/api/common/GetVerifyCode"; string strType = "application/x-www-form-urlencoded"; string strPar = "userName=18382565651";//拼接参数 HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url);//创建请求地址 httpWebRequest.ContentType = strType;//设置http标头 httpWebRequest.Method = "POST";//设置提交方式 httpWebRequest.Timeout = 600000;//设置过期时间 byte[] btBodys = Encoding.UTF8.GetBytes(strPar);//重写字符串为字节码 httpWebRequest.ContentLength = btBodys.Length; httpWebRequest.GetRequestStream().Write(btBodys, 0, btBodys.Length); HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse();//接收返回内容 StreamReader streamReader = new StreamReader(httpWebResponse.GetResponseStream());//读写为流 string responseContent = streamReader.ReadToEnd();//返回的数据 httpWebResponse.Close(); streamReader.Close(); httpWebRequest.Abort(); httpWebResponse.Close();
如何在后台调用接口
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。