我们正在从TFS 2015迁移到2017年TFS。我们已经在内部开发了TFS 2017的扩展,它将VSTS Rest API称为从TFS服务器获取工作项。 Web API调用在TFS 2015中运行良好,但在TFS 2017中给出了401 Unauthorized错误。甚至,当我尝试使用TFS_Wit_WebApi.getClient()。getWorkItem()方法时,我收到同样的错误。 我使用下面的代码和授权令牌来使用服务。
VSS.getAppToken().then(function(token){
authHeader = VSS_Auth_Service.authTokenManager.getAuthorizationHeader(token);
getData(authHeader);
});
function getData(authHeader)
{
var projectName = 'My Project';
var webContext = VSS.getWebContext();
var collectionUrl = webContext.host.uri + webContext.project.name +
"_apis/wit/wiql?api-version=1.0";
var d = { "query": "Select [System.Id] from WorkItems Where [System.WorkItemType] = 'Requirement' and [System.TeamProject] = '" + projectName + "' and [State] <> 'Closed' and [State] <> 'Proposed'" };
$.ajax({
type: 'POST',
url : collectionUrl,
contentType: 'application/json',
data: JSON.stringify(d),
headers: {
"Authorization": authHeader
},
success: function (data) {
for (i = 0; i < data.workItems.length; i++) {
$.ajax({
type: 'GET',
url: data.workItems[i].url,
contentType: 'application/json',
headers: {
"Authorization": authHeader
},
success: function (data) {
item = data.id + "-" + data.fields["System.Title"];
},
error: function (msg, url, line) {
alert(msg);
}
});
}
;
}, // Success Function
error: function (msg, url, line) {
alert("Msg:"+ msg);
}
});
}
&#13;
答案 0 :(得分:0)
尝试使用VSS.getAccessToken()
方法。