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/
Go to file
bihlink a0837c6212
Update modern-light.css
2022-07-06 17:33:36 +02:00
lib Update template.ejs 2022-07-05 23:59:38 +02:00
static Update modern-light.css 2022-07-06 17:33:36 +02:00
stylesrc Update base.scss 2022-07-04 06:58:45 +02:00
test allow people to filter out replies and/or boosts 2018-03-24 13:01:26 -05:00
.gitignore make CWs work 2018-09-29 17:29:17 -05:00
.replit index update 2022-06-20 13:42:01 +00:00
LICENSE Update LICENSE 2022-06-20 22:15:00 +02:00
README.md Update README.md 2022-06-20 18:26:34 +02:00
build-styles.js add auto color scheme 2019-11-04 17:22:03 -05:00
index.js Update index.js 2022-07-06 00:34:31 +02:00
package.json index update 2022-06-20 13:42:01 +00:00
yarn.lock Update yarn.lock 2022-07-06 00:32:21 +02:00

README.md

MaPlefeed

Open source tool to create Mastodon or Pleroma feed and display it on any web page.

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%2Fmastodon.social%2Fusers%2Fabidnev&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://mastodon.social/users/abidnev') ).

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, light or auto, to select the UI theme (default is dark). auto will appear light unless the user sets up dark mode on their device.
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%2Fmastodon.social%2Fusers%2Fabidnev.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://mastodon.social/users/abidnev.atom') ).

Querystring options:

option required description
url yes Mastodon Atom feed URL
theme no either dark, light or auto, to select the UI theme (default is dark). auto will appear light unless the user sets up dark mode on their device.
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.