-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
38 lines (32 loc) · 1016 Bytes
/
Program.cs
File metadata and controls
38 lines (32 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using Manatee.Trello;
using System.Threading.Tasks;
namespace TrelloCards
{
class Program
{
static void Main(string[] args)
{
TrelloAuthorization.Default.AppKey = "";
TrelloAuthorization.Default.UserToken = "";
retrieveBoardCards().GetAwaiter().GetResult();
async Task retrieveBoardCards()
{
try
{
var board = new Board("4d5ea62fd76aa1136000000c");
await board.Refresh();
Console.WriteLine($"All card of {board.Name}:");
var cards = board.Cards;
await cards.Refresh();
foreach (Card card in cards)
Console.WriteLine("· " + card.Name);
}
catch (Exception e)
{
Console.WriteLine("Something was wrong " + e.Message);
}
}
}
}
}