Liked https://i.redd.it/yuzn0nycn5oa1.jpg
Liked đ„the beautiful Crin Wolf. Not wolf or fox on Reddit
Liked https://i.redd.it/fm77xpv6umna1.jpg
Liked đ„ Penguins marching on an iceberg that has flipped upside down, sometimes known as a Blue Iceberg. on Reddit
Liked https://i.imgur.com/VtVuJcl.gifv
Imgur
Liked đ„ Rare footage of a Jaguarundi. This vocal, yet elusive feline is native to the Americas and sometimes referred to as the âotter-catâ. It has at least 13 distinct calls and is closely related to the Puma on Reddit
Liked https://youtu.be/-vM45wJXIjg
When you can customize your character
Liked [Poetry] When you can customize your character on Reddit
Liked https://www.youtube.com/watch?v=pR4NOPS8zNU
HOW TO HOLLA AT YOUR CRUSHâŠ
Liked [Haiku] How to holla at your crush on Reddit
Liked https://www.youtube.com/watch?v=zCAeTGgNJb8
The perfect sound
Liked [poetry] The actual perfect sound on Reddit
Liked https://matthiasott.com/notes/syndicating-posts-personal-website-twitter-mastodon
Syndicating Posts from Your Personal Website to Twitter and Mastodon
The hellsite has a new king. And so, many are moving from Twitter to other social networks like micro.blog or Mastodon or are at least trying out those other options while waiting how things might develop.
Cross-posting â or not?
One of the first questions that comes to mind is: how can I post on both Twitter and Mastodon so that I donât have to post my status updates separately? A good idea and something that can be done in various ways.
There are, however, a few problems that come with cross-posting from one platform to another. For one, it can look a little weird when your posts on one platform obviously look like they have been written for another platform. Your tweets might contain user handles from Mastodon that donât exist on Twitter or a Mastodon post could contain a âRTâ (for retweet) or quoted tweets. This can look like you donât really care about the people spending time on the other platform. But especially the user handles can be problematic because people might not know what to do with them or why they look so differently.
But even if you are fine with all that, cross-posting doesnât solve one of the biggest problems when it comes to posting content online: if you post your thoughts into a silo like Twitter, they are, to a certain extent, out of your control. You can delete (or maybe even edit) them, yes. But when a platform goes down, you end up with the problem of having to export and backup your data again.
POSSE
Wouldnât it be great to be able to post tweets, toots, or other status updates on your own site first? Especially the more important ones that you want to preserve? At least, your own site will be with you even when Twitter goes away or your account suddenly gets suspended. This is one of the basic principles of the IndieWeb: publish on your own site, syndicate elsewhere. Or short: POSSE.
You can see an example here on my site. I am syndicating all posts of my microblog section to Twitter, micro.blog, and Mastodon.
The first thing you need to do to achieve all this is to create a section on your site that you can use to post short status updates. This microblogging section then needs an RSS feed. Mine is this one, for example. Whenever you post a status, a new item will be added to the feed. And we can then use the feed to send new items to Mastodon, Twitter, or any other platform.
I wonât cover in this post how you can set up an RSS feed for your site. Yet it shouldnât be that hard to find solutions online for whatever you are using under the hood of your site. And for the sake of brevity, I will also focus on syndicating your posts to Twitter and Mastodon only.
Syndication with IFTTT
With an RSS feed in place, the next step is now to use a service that will send new feed items to the different platforms. Weâll use IFTTT for that, so you will need at least a free account there. Of course, you could also use Zapier or any other automation tool that you prefer.
Letâs start with how you can set things up for Twitter.
Syndicating to Twitter
The first step is to create a new Applet:
Now, under âIf thisâ, select âAddâ to add a trigger and search for and select âRSS Feedâ. Select âNew feed itemâ, which creates a trigger that fires every time a new item is added to your feed. Paste in your RSS feed URL and finish this step via the âCreate triggerâ button.
Next, we need to define what should happen when the trigger fires. Select âAddâ next to âThen thatâ and search for and select âTwitterâ. Select âPost a tweetâ or also âPost a tweet with imageâ. Connect your Twitter account. For the Tweet text, you can use the fields that are available under âAdd ingredientâ. You can use {{EntryTitle}}
,{{EntryUrl}}
, or {{EntryContent}}
, for example.
Select continue, rename your applet if you want to, and complete the process with the âfinishâ button. And youâre done! 🙌
If you have a free account, your applet will only run once every hour or so. But whenever there is a new item, IFTTT will automatically post a tweet for you.
Syndicating to Mastodon
With Mastodon, setting up syndication is a little bit trickier. Thatâs simply because there is no built-in integration for Mastodon in IFTTT. Thanksfully, I found a helpful article by Kelson Vibber about âHow to Post to Mastodon From Anything Using IFTTTâ.
You can still post to Mastodon using a feature called Webhooks. IFTTT Webhooks let you create Applets that can make or receive any kind of web request. So first, we need to activate that.
Go to IFTTT Webhooks and activate the feature by clicking on âConnectâ button.
Now we need to make sure IFTTT is allowed to make a request to post stuff. For this, we need to add IFTTT as an application in the settings of your Mastodon account. Go to Preferences > Development/Your Applications (e.g. on mastodon.social youâll find it here). Add a new application and enter a name for it. Under Application website, you need to add the full URL of your IFTTT Webhook. Youâll find it on the Webhooks Settings page. From the checkboxes below, only select write:statuses
.
Now, everything is ready to create our applet. The first step is the same like in the Twitter example. Create a new Applet and add your RSS feed as the trigger. Now comes the juicy part: Select âAddâ next to âThen thatâ and search for âWebhooksâ, select it, and then choose âMake a web requestâ.
Now you need to add the details of the request to Mastodon.
The âURLâ should look like this:
https://mastodon.example.com/api/v1/statuses?access_token=1234567890
Make sure to replace the mastodon.example.com with the domain of your instanceâs server! Also replace 1234567890 at the end of the URL with the access token of the application you created in Mastodon in the settings. To find the token, click on the Application and look for âYour access tokenâ.
The âMethodâ should be POST
.
For the âContent Typeâ, select application/x-www-form-urlencoded
.
Ignore âAdditional Headersâ. For the âBodyâ of the Request, use something like
status={{EntryContent}}
You can also add other ingredients like the URL or date of the post. Just make sure to include the status=
part so that everything is working properly.
Lastly, select continue, rename your applet if you want to, and complete the process with the âfinishâ button.
And youâre done again!
Now, whenever you post a status update on your own site, it will show up (after a little delay) on both platforms. 🎉
~
Liked https://twitter.com/momodraws/status/1571944213532610564
JavaScript is not available.
Right pic.twitter.com/0s02BDuI6u
— Momo (@momodraws) September 19, 2022
Liked https://twitter.com/momodraws/status/1570028351112318978
JavaScript is not available.
Itâs time! â€ïž a brand new shop filled with shirts, hats, totes and more based on momo & forg is now live! Oh, and its also integrated in a new website where I will be collecting all my little heyheymomo comics!
— Momo (@momodraws) September 14, 2022
Go have a look at https://t.co/kYmCdOBVxl đđ„° pic.twitter.com/Mc5JpJExZv
Comments
Syndicating Posts from Your Personal Website to Twitter and Mastodon · Matthias Ott â User Experience Designer
Angie Radtke Great Matthias, thank you
Louis Derrac (BOT) â;ïž; ????; [Veille] Syndicating Posts from Your Personal Website to Twitter and Mastodon · Matthias Ott â User Experience Designer matthiasott.com/notes/syndicat⊠🗃;ïž;Toute ma veille commentĂ©e veille.louisderrac.com
#WikiParty@[email protected] RT @[email protected] â;ïž; New post: Syndicating Posts from Your Personal Website to Twitter and Mastodon #TwitterTakeover #IndieWeb matthiasott.com/notes/syndicat⊠mastodon.social/@matthiasott/1âŠ
Matthias Ottâbring back @mmatuzo Hope it helps/works!
Angie Radtke Will tell you - Joomla Integration .-)