首页 > 解决方案 > 在 DevOps 中枚举 Projects 时,有没有办法确定项目中是否存在 Pipeline?

问题描述

到目前为止,我已经使用此代码来获取我们的 azure devops 项目数据。我浏览了数据,返回的任何 url 都在寻找与管道相关的数据,但一无所获

string credentials = Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(string.Format("{0}:{1}", "", personalAccessToken)));

ListofProjectsResponse.Projects viewModel = null;

//use the httpclient
using (var client = new HttpClient())
{
    client.BaseAddress = new Uri("https://acme.visualstudio.com");  //url of our account
    client.DefaultRequestHeaders.Accept.Clear();
    client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));
    client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", credentials);

    HttpResponseMessage response = client.GetAsync("/DefaultCollection/_apis/projects?stateFilter=All&api-version=1.0").Result;

    //check to see if we have a succesfull respond
    if (response.IsSuccessStatusCode)
    {
        //set the viewmodel from the content in the response
        viewModel = response.Content.ReadAsAsync<ListofProjectsResponse.Projects>().Result;


 }
}
    public class ListofProjectsResponse
    {
        public class Projects
        {
            public int count { get; set; }
            public Value[] value { get; set; }
        }

        public class Value
        {
            public string id { get; set; }
            public string name { get; set; }
            public string description { get; set; }
            public string url { get; set; }
            public string state { get; set; }
        }

    }

标签: azure-devops

解决方案


对您的主要工作代码进行了一些更改并在下面分享,请尝试一下:

string credentials = Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(string.Format("{0}:{1}", "", "{PAT}")));

            using (var client = new HttpClient())
            {
                client.BaseAddress = new Uri("https://acme.visualstudio.com");  //url of our account
                client.DefaultRequestHeaders.Accept.Clear();
                client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));
                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", credentials);

                //HttpResponseMessage response = client.GetAsync("/_apis/projects?stateFilter=All&api-version=1.0").Result;
                using (HttpResponseMessage response = await client.GetAsync("/ForMerlin/_apis/projects"))
                {
                    response.EnsureSuccessStatusCode();
                    string responseBody = await response.Content.ReadAsStringAsync();
                    Console.WriteLine(responseBody);
                }
               // Console.WriteLine(response);

            }

在此处输入图像描述


因为BaseAddress,您使用的是旧的 URL 格式,例如https://{org name}.visualstudio.com. 此 URL 格式已包含组织名称,因此您可以organization name在调用时忽略GetAsync。顺其自然就好了/_apis/projects?stateFilter=All&api-version=1.0


推荐阅读