Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/syuilo/misq

.NET Misskey library
https://github.com/syuilo/misq

dotnet misskey

Last synced: 3 months ago
JSON representation

.NET Misskey library

Awesome Lists containing this project

README

        

# Misq
Misq is an official .NET Misskey library.

## Install
available on nuget

## Usage

``` Csharp
// Create your app instance
var app = new Misq.App("https://misskey.io", "your app's secret key here");

// Authorize user
var user = await app.Authorize();

// Let's post a message to Misskey
user.Request("notes/create", new Dictionary {
{ "text", "yee haw!" }
});
```