后台请求API

Posted 畅洋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后台请求API相关的知识,希望对你有一定的参考价值。

常常会有用到许多后台请求接口取数据的情况,可能很多初学者不了解,不知道如何去操作,特贴此详例,仅供参考:

//Url为请求路径
 public static string RequestUrl(string url, System.Text.Encoding encode)
        {
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(new Uri(url));
            request.Method = "Get";
            request.ContentType = "application/x-www-form-urlencoded";
            HttpWebResponse response = (HttpWebResponse)request.GetResponse();
            using (System.IO.StreamReader reader = new System.IO.StreamReader(response.GetResponseStream(), encode))
            {
                return reader.ReadToEnd();
            }
        }

 

以上是关于后台请求API的主要内容,如果未能解决你的问题,请参考以下文章

替换或删除后台堆栈上现有片段的代码不起作用

后台请求API

php 中发送get请求,后台无法获取

iOS - 在后台推送通知上刷新数据(发出 Api 请求)

在后台堆栈中多次防止相同的片段

ecstore 后台登陆跳转到 api失败,中心请求网店API失败