gpt4 book ai didi

Azure devops Rest API 系统.描述

转载 作者:行者123 更新时间:2023-12-03 04:48:32 32 4
gpt4 key购买 nike

使用 Azure Devops RestAPI 进行一些测试,以通过 powershell 脚本制作发行说明。我似乎无法从工作项中取回 System.Description 字段。可能与它是 HTML 编辑器字段有关

有什么想法吗?

最佳答案

Azure devops RestAPI System.Description

我们可以使用 REST API Work Items - Get Work Item获取workiten详细信息:

GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/{id}?api-version=6.0

返回结果:

enter image description here

注意:

  • 一般HTML格式的值,例如<div></div> <B></B> .
  • 您需要在描述字段中设置值,否则字段 System.Description不存在。

我的 powershell 测试脚本:

$connectionToken="$(PAT)"
$base64AuthInfo= [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$($connectionToken)"))

$url = "https://dev.azure.com/<YourOrganizationName>/<YourTestProject>/_apis/wit/workItems/184?api-version=6.0"

$WorkItemInfo = (Invoke-RestMethod -Uri $url -Method Get -UseDefaultCredential -Headers @{Authorization=("Basic {0}" -f $base64AuthInfo)})

Write-Host "SystemDescription= $($WorkItemInfo.fields."System.Description" )"

注2:

  • 获取 System.Description 的值时,我们需要给 System.Description 添加双引号.

结果:

enter image description here

关于Azure devops Rest API 系统.描述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65296050/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com