【问题标题】:C# Multipart form-data in HttpClient Post REST APIHttpClient Post REST API 中的 C# Multipart 表单数据
【发布时间】:2020-05-10 08:05:05
【问题描述】:

下面是 Postman 的代码。我需要在 POST 请求中发送这个 Body 和 Header

var client = new RestClient("https://azr-stg.dev03.abs.ase.southcentralus.us.wc.net/files/v11");
var request = new RestRequest(Method.POST);
request.AddHeader("cache-control", "no-cache");
request.AddHeader("Content-Type", "application/pdf");
request.AddHeader("X-Client-Id", "94437320-3bcf-498d-915a");
request.AddHeader("Tenant-Id", "0d3ad0cd-3bb3-4fc0-bd15");
request.AddHeader("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA");
request.AddParameter("multipart/form-data; boundary=----WebKitFormBoundary7MA", "------WebKitFormBoundary7MA\r\nContent-Disposition: form-data; name=\"file\"; filename=\"sample.pdf\"\r\nContent-Type: application/pdf\r\n\r\n\r\n------WebKitFormBoundary7MA\r\nContent-Disposition: form-data; name=\"metadata\"\r\n\r\n\r\n------WebKitFormBoundary7MA--", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);

上面的帖子在 Postman 中运行良好并且能够上传文件,但我想以编程方式执行此操作。 API 接受内容类型(如文本、pdf、图像文件)。

如何格式化正文和标头内容以使用多部分表单数据通过 HttpClient 请求发送上述内容

这里是 HttpClient 的示例代码。我收到错误请求/内部服务器错误。

HttpClient _httpclient = new HttpClient()
using (var multiPartStream = new MultipartFormDataContent())
{



MemoryStream stream = new MemoryStream(filecontent);
//JsonSerializer.WriteObject(stream, newDocument);
ByteArrayContent firstPart = new ByteArrayContent(stream.ToArray());
firstPart.Headers.ContentType = JSON_GENERIC_MEDIA_TYPE;
firstPart.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data") { Name = "metadata" };
multiPartStream.Add(firstPart);
stream.Dispose();


StreamContent otherContent = new StreamContent(content);
otherContent.Headers.ContentType = new MediaTypeHeaderValue(applicationContentType);
//otherContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data") { Name = "file" };
otherContent.Headers.Add("Content-Disposition", $"form-data; name=\"file\"; filename=\"{docFullName}\"");

multiPartStream.Add(otherContent);


HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, urlTwo);
request.Content = multiPartStream;


 request.Headers.Accept.Add(“application/json”);
 request.Headers.Add("X-Client-Id", "94437320-3bcf-498d-915a");
 request.Headers.Add("Tenant-Id", "0d3ad0cd-3bb3-4fc0-bd15");
 HttpCompletionOption option = HttpCompletionOption.ResponseContentRead;

using (HttpResponseMessage response = _httpClient.SendAsync(request, option).Result)
{

if (response.IsSuccessStatusCode)
{
  var deserializedObject = JsonConvert.DeserializeObject<Walmart.MDM.MasterUIMVC.Helpers1.RootObject>(response.Content.ReadAsStringAsync().Result);
  return deserializedObject.properties.r_object_id.ToString();
}

感谢任何帮助。

【问题讨论】:

    标签: c# rest asp.net-core advanced-rest-client


    【解决方案1】:

    所有,最后我能够以编程方式在 C# 中重现 Postman 代码。

    我能够在多部分表单数据中添加“元数据”属性。

    参考:Upload Files Using HttpClient

    string Seshat_URL = "https://azr-stg.dev03.abs.ase.southcentralus.us.wc.net/files/v11";
          using (var multiPartStream = new MultipartFormDataContent())
                    {
    
                        multiPartStream.Add(new StringContent("{}"), "metadata");
                        multiPartStream.Add(new ByteArrayContent(filecontent, 0, filecontent.Length), "file", docName);
                        HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, Seshat_URL);
                        request.Content = multiPartStream;
                        //"application/json" - content type
                        request.Headers.Accept.Add(JSON_GENERIC_MEDIA_TYPE);  
                        request.Headers.Add("X-Client-Id", ClientId);                
                        request.Headers.Add("Tenant-Id", TenantId);
    
                        HttpCompletionOption option = HttpCompletionOption.ResponseContentRead;
                        System.Net.ServicePointManager.ServerCertificateValidationCallback = ((sender, certificate, chain, sslPolicyErrors) => true);
    
                        using (HttpResponseMessage response = _httpClient.SendAsync(request, option).Result)
                        {
                            if (response.IsSuccessStatusCode)
                            {
                                var deserializedObject = JsonConvert.DeserializeObject<Wc.MCM.UIMVC.Helpers1.BlobResponse>(response.Content.ReadAsStringAsync().Result);
                                return deserializedObject.fileId.ToString();
                            }                        
                        }
    
                    }//End Try
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-07-28
      • 1970-01-01
      • 2022-08-19
      • 2012-02-23
      • 1970-01-01
      相关资源
      最近更新 更多