Software Alternatives & Reviews

Add Mastodon replies to your blog

Webmention.io Bridgy
  1. Webmention.io is a hosted service created to easily receive webmentions on any web page.
    Pricing:
    • Open Source
    Async function getMentions(url) { let mentions = []; let page = 0; let perPage = 100; while (true) { const results = await fetch( `https://webmention.io/api/mentions.jf2?target=${url}&per-page=${perPage}&page=${page}` ).then((r) => r.json()); mentions = mentions.concat(results.children); if (results.children.length < perPage) { break; } page++; } return mentions.sort((a, b) => ((a.published || a['wm-received']) < (b.published || b['wm-received']) ? -1 : 1)); }.

    #Web Mentions #Social Media Tools #Blogging 4 social mentions

  2. 2
    Bridgy pulls comments, likes, and reshares on social networks back to your web site. You can also use it to post to social networks - or comment, like, reshare, or even RSVP - from your own web site. https://brid.gy/
    Fortunately, I'm not the first one to run into this problem, and so there's a free service available that solves this problem. If you sign up for brid.gy, you can link your social media accounts, including Mastodon, and brid.gy will automatically send webmentions to your site whenever one of your posts contains a link to your site, and people reply to, boost or favourite your post. Essentially, your Mastodon posts become an anchor for all the interactions on your blog posts.

    #Web Mentions #Social Media Tools #Social Network 10 social mentions

Discuss: Add Mastodon replies to your blog

Log in or Post with