theseed-api is a library that provides classes and methods for using API for The Seed wiki engine.
License
—
Deps
0
Install Size
—
Vulns
✓ 0
Published
Jul 13, 2023
$ dotnet add package theseed-apitheseed-api provides classes and methods for using API for The Seed wiki engine.
theseed-api�� The Seed ������ API�� C#���� ����� �� �ְԲ� Ŭ������ ���带 �����մϴ�.
using Sugarmaple.TheSeed.Api;
public async Task<int> DoEdit()
{
var client = new SeedApiClient("https://theseed.io", "API KEY");
var editor = await client.GetEditAsync("DocName");
var result = await editor.PostEditAsync("DocContents", "Summary");
var rev = result.Rev;
return rev;
}