Post 通过 API 评论带有超链接的 ADO Boards 工作项目
Post comment via API to ADO Boards Work Item with hyperlink
我正在尝试通过 API 在 ADO 中创建或更新工作项。
我想在评论部分创建一个超链接。我在 ADO 中使用 system.history 字段,到目前为止,我已经在该字段的有效负载中尝试了以下内容:
- URL 编码 (
system.history=https%3A%2F%2Fgoogle.com
) 显示 - https%3A%2F%2Fgoogle.com
- 标记 (
system.history=[google](https://google.com)
) 显示 - [google](https://google.com)
- 纯文本 (
system.history=https://google.com
) 显示 - https://google.com
- HTML (
system.history=<div><a href="https://google.com">google</a></div>
) 什么都不显示
此评论字段似乎支持工作项 UI 的完整 HTML 功能,它可以通过 API 实现同样的功能吗?
PATCH https://dev.azure.com/{org}/_apis/wit/workitems/{id}?api-version=6.0
请求正文:
[
{
"op": "add",
"path": "/fields/System.History",
"value": "<div>Link: <a href=\"https://whosebug.com/\">https://whosebug.com/</a></div>"
}
]
邮递员测试:
测试结果:
我正在尝试通过 API 在 ADO 中创建或更新工作项。
我想在评论部分创建一个超链接。我在 ADO 中使用 system.history 字段,到目前为止,我已经在该字段的有效负载中尝试了以下内容:
- URL 编码 (
system.history=https%3A%2F%2Fgoogle.com
) 显示 -https%3A%2F%2Fgoogle.com
- 标记 (
system.history=[google](https://google.com)
) 显示 -[google](https://google.com)
- 纯文本 (
system.history=https://google.com
) 显示 -https://google.com
- HTML (
system.history=<div><a href="https://google.com">google</a></div>
) 什么都不显示
此评论字段似乎支持工作项 UI 的完整 HTML 功能,它可以通过 API 实现同样的功能吗?
PATCH https://dev.azure.com/{org}/_apis/wit/workitems/{id}?api-version=6.0
请求正文:
[
{
"op": "add",
"path": "/fields/System.History",
"value": "<div>Link: <a href=\"https://whosebug.com/\">https://whosebug.com/</a></div>"
}
]
邮递员测试:
测试结果: