在 Azure DevOps git api 中使用 searchCriteria.creatorId 不起作用
Using searchCriteria.creatorId in Azure DevOps git api does not work
我正在尝试使用 git api 查询我们的存储库以获取某个用户创建的所有拉取请求:
但我仍然收到其他用户的拉取请求:
这是 JSON 结果:
"value": [
{
.....
"createdBy": {
"displayName": "ABC",
....
"uniqueName": "domain\ABC",
},
.....
"createdBy": {
"displayName": "DEF",
....
"uniqueName": "domain\DEF",
},
我做错了什么?
你应该给 id
,而不是 uniqueName
:
我正在尝试使用 git api 查询我们的存储库以获取某个用户创建的所有拉取请求:
但我仍然收到其他用户的拉取请求:
这是 JSON 结果:
"value": [
{
.....
"createdBy": {
"displayName": "ABC",
....
"uniqueName": "domain\ABC",
},
.....
"createdBy": {
"displayName": "DEF",
....
"uniqueName": "domain\DEF",
},
我做错了什么?
你应该给 id
,而不是 uniqueName
: