我正在尝试使用下面的 api 获取我的 jira 实例的活动流,但它不起作用,有人能指出我正确的方向吗?
问问题
5979 次
2 回答
1
活动流的 Atom 提要只有在您也登录提要阅读器时才能正常工作。
于 2015-02-12T10:43:08.623 回答
1
以下是使用基本身份验证通过 Jira API 使用活动流的示例。这是在 C# 中,但基本模式可以在任何地方应用:
string myJiraUsername = "username";
string myJiraPassword = "password"; //or API token
string authenticationHeaderValue = Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(myJiraUsername + ":" + myJiraPassword));
System.Net.Http.HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", authenticationHeaderValue);
Task<HttpResponseMessage> task = client.GetAsync("https://mycompany.atlassian.net/activity");
task.Wait();
HttpResponseMessage response = task.Result;
string resultOfApiCall = "";
if (response.IsSuccessStatusCode)
{
resultOfApiCall = response.Content.ReadAsStringAsync().Result;
Console.WriteLine("This was returned by your API request:\n" + resultOfApiCall);
}
于 2018-08-03T12:17:20.307 回答