.net core web api 与httpclient发送和接收文件及数据【转载】
作者:互联网
转:https://www.cnblogs.com/dayang12525/p/10688842.html
客户端 HttpClient
var url = $"https://localhost:44323/api/values/posttest?resource_source=yangwwmessage"; using (HttpClient _client = new HttpClient()) { using (var multiContent = new MultipartFormDataContent()) { var fileContent = new ByteArrayContent(System.IO.File.ReadAllBytes(imgPath)); multiContent.Add(fileContent, "file", Path.GetFileName(imgPath)); HttpResponseMessage response = _client.PostAsync(url, multiContent).Result; string data = response.Content.ReadAsStringAsync().Result; } }
服务端.net core Web Api
[HttpPost] [Route("PostTest")] public JsonResult PostTest() { var r = Request.Query["resource_source"].ToString(); var files = HttpContext.Request.Form.Files; return new JsonResult("this is a test api for me") { StatusCode = 200 }; }
标签:core,web,api,fileContent,var,new,multiContent,HttpClient 来源: https://www.cnblogs.com/nnnnnn/p/14137739.html