私は Visual Studio Online REST API を使用しており、作業項目の作成以外はすべて機能しているように見えます。これはオンプレミスのインストールではありません。この例に従って PATCH を送信しましたが、400 Bad Request エラーを受け取りました。 VSO 作業項目の作成
フィドラーごとに、これは私の生のリクエストです:
PATCH https://xxx.visualstudio.com/defaultcollection/myproject/_apis/wit/workitems/$Task?api-version=1.0 HTTP/1.1
Accept: application/json
Authorization: Basic RmI3etc_etc_etc==
Content-Type: application/json-patch+json; charset=utf-8
Host: xxx.visualstudio.com
Content-Length: 101
Expect: 100-continue
Connection: Keep-Alive
{"op":"add","path":"/fields/System.Title","value":"JavaScript implementation for Microsoft Account"}
返される応答は 400 Bad Request です。
{"$id":"1","innerException":null,"message":"You must pass a valid patch document in the body of the request.","typeName":"Microsoft.VisualStudio.Services.Common.VssPropertyValidationException, Microsoft.VisualStudio.Services.Common, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03ftoken0a3a","typeKey":"VssPropertyValidationException","errorCode":0,"eventId":3000}
パッチドキュメントが無効であると言っている理由がわかりません。
更新: リクエストごとに、コードの一部を共有するだけです。私は自分のライブラリをいじくり回しました。プロジェクトに作業項目を簡単に追加するために作成したもの (製品のバックログ、バグなど) を次に示します。
public void AddWorkItem(VSOWorkItem workItem, string project)
{
Project = project;
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Accept.Add(
new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));
//Set alternate credentials
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic",
Convert.ToBase64String(
System.Text.ASCIIEncoding.ASCII.GetBytes(
string.Format("{0}:{1}", UserName, Password))));
var workItems = new List<VSOFieldPatch>();
workItems.Add(new VSOFieldPatch() { Op = "add", Path = "/fields/" + VSOWorkItemFieldName.Title, Value = workItem.Title });
workItems.Add(new VSOFieldPatch() { Op = "add", Path = "/fields/" + VSOWorkItemFieldName.Description, Value = workItem.Description });
if (!string.IsNullOrEmpty(workItem.Tags))
workItems.Add(new VSOFieldPatch() { Op = "add", Path = "/fields/" + VSOWorkItemFieldName.Tags, Value = workItem.Tags });
var resp = AddWorkItemAsync(client, workItems, BaseProjectUrl + "wit/workitems/$" + workItem.WorkItemType.ToString());
}
}
private async Task<String> AddWorkItemAsync(HttpClient client,
IEnumerable<VSOFieldPatch> data,
String apiUrl)
{
var responseBody = String.Empty;
var temp = JsonConvert.SerializeObject(data);
var content = new StringContent(
JsonConvert.SerializeObject(data),
Encoding.UTF8,
"application/json-patch+json");
try
{
using (HttpResponseMessage response = client.PatchAsync(apiUrl + ApiVersion, content).Result)
{
response.EnsureSuccessStatusCode();
responseBody = await response.Content.ReadAsStringAsync();
}
}
catch (Exception ex)
{
}
return responseBody;
}
そして、これは私の PATCH 拡張機能です:
public static class HttpClientExtensions
{
public static Task<HttpResponseMessage> PatchAsync(this HttpClient client, string requestUri, HttpContent content)
{
HttpRequestMessage request = new HttpRequestMessage
{
Method = new HttpMethod("PATCH"),
RequestUri = new Uri(client.BaseAddress + requestUri),
Content = content,
};
return client.SendAsync(request);
}
}