Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 902 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 902 Bytes

Artwork Inbox

https://artworkinbox.azurewebsites.net/

An ASP.NET Core web application that provides an alternate UI for viewing your feed.

Supported sites:

Support can also be added for a Mastodon server by editing Startup.cs:

services.AddMastodon("example.com", o => {
    o.Scope.Add("read:statuses");
    o.Scope.Add("read:accounts");
    o.Scope.Add("read:notifications");
    o.ClientId = Configuration["Authentication:Mastodon:example.com:client_id"];
    o.ClientSecret = Configuration["Authentication:Mastodon:example.com:client_secret"];
    o.SaveTokens = true;
});