接口请求
Posted 紫心落
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了接口请求相关的知识,希望对你有一定的参考价值。
public static string PostmanPost() { var client = new RestClient("http://119.3.248.64:3000"); var request = new RestRequest(Method.POST); request.RequestFormat = DataFormat.Json; request.AddHeader("Content-Type", "application/json"); Myobject bean = new Myobject("console","test"); request.AddParameter("application/json; charset=utf-8", JsonConvert.SerializeObject(bean), ParameterType.RequestBody); IRestResponse response = client.Execute(request); var responseContent = response.Content; return responseContent; }
以上是关于接口请求的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段14——Vue的axios网络请求封装