Попытка получить список пользователей TFS через клиентскую библиотеку - PullRequest
0 голосов
/ 03 мая 2018

Я пытаюсь получить список всех команд на моем TFS-сервере (2017) со следующим кодом, а версия клиентских библиотек является последней версией.

var teamclient = await Connection.GetClientAsync<TeamHttpClient>();
var teams = await teamclient.GetAllTeamsAsync();

Это приводит к следующему исключению: Расположение ресурса API 7a4d9ee9-3433-4347-b47a-7a80f1cf307e не зарегистрировано (ссылка tfs удалена из соображений конфиденциальности)

1 Ответ

0 голосов
/ 04 мая 2018

Вы можете попробовать следующий код, чтобы получить список всех пользователей:

TfsTeamProjectCollection tfs = new TfsTeamProjectCollection(new Uri("url"));
tfs.EnsureAuthenticated();

IGroupSecurityService gss = tfs.GetService<IGroupSecurityService>();

Identity SIDS = gss.ReadIdentity(SearchFactor.AccountName, "Project Collection Valid Users", QueryMembership.Expanded);

Identity[] UserId = gss.ReadIdentities(SearchFactor.Sid, SIDS.Members, QueryMembership.None);

foreach (Identity user in UserId)
{
    Console.WriteLine(user.AccountName);
    Console.WriteLine(user.DisplayName);
}

Или вы можете использовать следующий код для получения пользователей в каждой команде:

using Microsoft.TeamFoundation.Core.WebApi;
using Microsoft.VisualStudio.Services.Client;
using Microsoft.VisualStudio.Services.Common;
using Microsoft.VisualStudio.Services.WebApi;
using System;
using System.Collections.Generic;

namespace GetUser
{
    class Program
    {
        static void Main(string[] args)
        {
            String collectionUri = "http://TFS2017:8080/tfs/defaultcollection";
            VssCredentials creds = new VssClientCredentials();
            creds.Storage = new VssClientCredentialStorage();
            VssConnection connection = new VssConnection(new Uri(collectionUri), creds);
            TeamHttpClient thc = connection.GetClient<TeamHttpClient>();
            List<IdentityRef> irs = thc.GetTeamMembersAsync("TeamProject", "TeamProjectTeam").Result;

            foreach (IdentityRef ir in irs)
            {
                Console.WriteLine(ir.DisplayName);
            }
        }
    }
}

Обновление:

using Microsoft.TeamFoundation.Core.WebApi;
using Microsoft.VisualStudio.Services.Client;
using Microsoft.VisualStudio.Services.Common;
using Microsoft.VisualStudio.Services.WebApi;
using System;
using System.Collections.Generic;

namespace GetUser
{
    class Program
    {
        static void Main(string[] args)
        {
                        String collectionUri = "http://TFS2017:8080/tfs/defaultcollection";
        VssCredentials creds = new VssClientCredentials();
        creds.Storage = new VssClientCredentialStorage();
        VssConnection connection = new VssConnection(new Uri(collectionUri), creds);
        TeamHttpClient thc = connection.GetClient<TeamHttpClient>();

        List<WebApiTeam> irs = thc.GetTeamsAsync("AgileProject").Result;

        foreach (WebApiTeam ir in irs)
        {
            Console.WriteLine(ir.Name);
        }

        }
    }
}
...