我尝试使用 HttpClient post 方法将文件附加到 JIRA 问题附件 - 返回的 JIRA JSON 对象是[]
. 请在下面找到我的代码块。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Http;
using System.Json;
using System.Web.Script.Serialization;
using System.Net;
namespace JiraAttachements
{
class Class1
{
public void AddAttachment()
{
System.Net.Http.HttpClient client = new System.Net.Http.HttpClient();
client.DefaultRequestHeaders.ExpectContinue = false;
client.Timeout = TimeSpan.FromMinutes(90);
byte[] crdential = UTF8Encoding.UTF8.GetBytes("wwww:yyyy");
client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Basic", Convert.ToBase64String(crdential));
client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));
var filecontent = new ByteArrayContent(System.IO.File.ReadAllBytes("C:\\Users\\xxx\\Desktop\\Keys.txt"));
var content = new MultipartFormDataContent("AA");
content.Headers.Add("X-Atlassian-Token", "nocheck");
content.Headers.Add("charset", "UTF-8");
content.Headers.ContentDisposition = new System.Net.Http.Headers.ContentDispositionHeaderValue("form-data")
{
Name="\"file\"",
FileName = "C:\\Users\\xxx\\Desktop\\Keys.txt"
};
content.Add(filecontent);
try
{
client.PostAsync("https://{server name}.atlassian.net/rest/api/2/issue/TEST-1/attachments", content).ContinueWith(requesTask =>
{
try
{
HttpResponseMessage response = requesTask.Result;
if (response.StatusCode == "OK")
{
Console.WriteLine(" Attached .");
}
else
{
}
}
catch (Exception exception)
{
}
});
}
catch (Exception exception)
{
Console.WriteLine(exception.StackTrace.ToString());
Console.ReadLine();
}
Console.ReadKey();
}
}
}
请在我的代码中突出显示我的错误。我对 multipart/form-data 边界值设置过程感到震惊。请给出一些使用HttpClient
JIRA 问题附件的 post 方法的示例。