mirror of
https://github.com/ckaczor/ChrisKaczor.MinifluxClient.git
synced 2026-01-13 17:22:25 -05:00
22 lines
485 B
C#
22 lines
485 B
C#
using ChrisKaczor.MinifluxClient;
|
|
|
|
namespace Test;
|
|
|
|
[TestClass]
|
|
public sealed class Test
|
|
{
|
|
[TestMethod]
|
|
public async Task TestMethod1()
|
|
{
|
|
var client = new MinifluxClient("", "");
|
|
|
|
var categories = await client.GetCategories();
|
|
|
|
var feeds = await client.GetFeeds();
|
|
|
|
foreach (var feed in feeds)
|
|
{
|
|
var feedEntries = await client.GetFeedEntries(feed.Id, SortField.PublishedAt, SortDirection.Descending);
|
|
}
|
|
}
|
|
} |