作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一种方法来代表另一个用户(模拟另一个用户)向工作项添加评论。
VssConnection connection = new VssConnection(new Uri(url), new VssClientCredentials());
WorkItemTrackingHttpClient client = connection.GetClient<WorkItemTrackingHttpClient>();
patchDocument.Add(
new JsonPatchOperation()
{
Operation = Operation.Add,
Path = "/fields/System.History",
Value = "Sample comment 1"
}
);
await client.UpdateWorkItemAsync(patchDocument, id);
最佳答案
要在 Azure DevOps 中对工作项创建评论(或代表某人进行更改),您需要在补丁文档中设置 System.ChangedBy 字段并使用 bypassRules :真
WorkItemTrackingHttpClient client = connection.GetClient<WorkItemTrackingHttpClient>();
patchDocument.Add(
new JsonPatchOperation()
{
Operation = Operation.Add,
Path = "/fields/System.History",
Value = "Sample comment 1"
}
);
patchDocument.Add(
new JsonPatchOperation()
{
Operation = Operation.Add,
Path = "/fields/System.ChangedBy",
Value = "user@onbehalfof.com" //can be valid user id (guid) or user email (domain\alias for onprem).
});
await client.UpdateWorkItemAsync(patchDocument, id, bypassRules:true);
此外,为了能够设置 bypassRules:true - 执行操作的身份必须具有适当的权限:“绕过工作项更新规则”
关于azure-devops - Azure 开发运营 : create a comment on behalf of another user,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53964647/
我是一名优秀的程序员,十分优秀!