Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/syuilo/misq
- Owner: syuilo
- License: mit
- Created: 2015-05-17T20:40:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-09-02T04:04:08.000Z (over 1 year ago)
- Last Synced: 2024-04-13T13:49:53.805Z (10 months ago)
- Topics: dotnet, misskey
- Language: C#
- Homepage:
- Size: 25.4 KB
- Stars: 21
- Watchers: 4
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!" }
});
```