1
0
mirror of https://github.com/fenwick67/mastofeed synced 2025-02-03 20:27:41 +01:00
fenwick67 111c73396c make the default in the UI be hiding replies and hiding boosts.
This is really to reduce latency for users. Boosts take forever to fetch and replies are not something people usually want to see.
2019-08-02 18:37:15 -04:00
2019-08-02 18:33:33 -04:00
2019-08-02 11:57:13 -04:00
2018-09-29 17:29:17 -05:00
2019-08-02 13:24:31 -04:00
2017-04-30 13:04:48 -05:00
2019-08-02 13:24:31 -04:00
2019-08-02 13:24:31 -04:00
2019-08-02 13:33:03 -04:00

Mastofeed

Embed a mastodon feed in your blog et cetera.

https://www.mastofeed.com

User guide

The homepage has a tool for generating iframe code for you, with a sensible sandbox attribute. The feeds fit comfortably in a 400px wide area.

API

V2

GET /apiv2/feed

example: /api/feed?userurl=https%3A%2F%2Foctodon.social%2Fusers%2Ffenwick67&scale=90&theme=light

Returns a html page which displays a mastodon feed for a user URL. Note that URLs must be URI encoded (i.e. encodeURIComponent('https://octodon.social/users/fenwick67') ).

Querystring options:

option required description
userurl yes Mastodon/ActivityPub account URL (usually https://${instance}/users/${username})
feedurl no a URL to a page of an ActivityPub post collection. Only used for pages beyond the first.
theme no either dark or light, to select the UI theme (default is dark).
boosts no whether to show boosts or not
replies no whether to show replies or not
size no the scale of the UI in percent.

V1 (deprecated, will now just redirect you to the v2 API)

GET /api/feed

example: /api/feed?url=https%3A%2F%2Foctodon.social%2Fusers%2Ffenwick67.atom&scale=90&theme=light

Returns a html page which displays a mastodon feed for an atom feed URL. Note that URLs must be URI encoded (i.e. encodeURIComponent('https://octodon.social/users/fenwick67.atom') ).

Querystring options:

option required description
url yes Mastodon Atom feed URL
theme no either dark or light, to select the UI theme (default is dark).
size no the scale of the UI in percent.

Server Installation

This is a straightforward node project with zero databases or anything, you should just be able to run npm install and then npm start to get up and running. Set your PORT environment variable to change the port it listens on.

Improve me

Feel free to add a chaching layer, improve the styles and add more features.

Description
Incorpora un feed di un account mastodon nel tuo blog o sito Uno strumento per generare il codice iframe, i feed si inseriscono comodamente in un'area larga 400px.
https://mastodon.uno/ Readme MIT
Languages
JavaScript 43.1%
CSS 29.4%
EJS 10.6%
HTML 8.9%
SCSS 8%