mastodon.me.uk is one of the many independent Mastodon servers you can use to participate in the fediverse.
Open, user-supported, corporation-free social media for the UK.

Administered by:

Server stats:

547
active users

#mastodonapi

0 posts0 participants0 posts today

I've built a thing.

Sometimes my follower count seemingly fluctuates at random. To understand why, I dug into the #MastodonAPI and eventually created "fedi-followers":

A privacy-friendly #fediverse #followers explorer as local-only static web app, decentrally hosted on the #ipfs. See who's actually following (and unfollowing) you over time and much more.

fedi--followers-data0-one.ipns

fedi--followers-data0-one.ipns.dweb.linka privacy-friendly fediverse followers explorer as local-only static web app.
Continued thread

Hey, everyone! It took like 1.5 years, here is, finally, a proper new release for Mastodon.py! 🐍 This was a lot of work! I'm so glad I finally got it across the line!

Docs: mastodonpy.readthedocs.io/en/2
Github with changelog: github.com/halcy/Mastodon.py/r

This is a *massive* update. There's all the support for new endpoints up to 4.3.0, and large amounts of refactoring. The library is now fully typed, too, and thanks to that documentation has been massively improved!

Despite the major version bump, everything *should* be for the most part backward compatible. Existing code should not break, unless you're on Python 3.6 or below. I would still recommend being careful about upgrading without need. Expect a maintenance update once people actually start using this and find all the issues in the code that my tests didn't catch.

mastodonpy.readthedocs.ioMastodon.py — Mastodon.py 1.8.1 documentation
Replied in thread
@Jan Well, it is possible to use the Mastodon client API for features that Mastodon itself doesn't have like text formatting. But, for example, many mobile apps don't support text formatting because Mastodon doesn't, although everything that isn't Mastodon does. They're built only against Mastodon.

And there are things, mostly Web services, that either do the same, use the client API, implement only Mastodon features and depend hard on features that only Mastodon has. Or they skip APIs and build directly against Mastodon, again, requiring the presence of features only available on Mastodon in the required way.

Then they have the audacity to have "Fedi" in their names while being completely incompatible with Pleroma, Misskey, Iceshrimp, Friendica, Hubzilla etc., essentially everything that isn't Mastodon or maybe a Mastodon fork.

#Long #LongPost #CWLong #CWLongPost #FediMeta #FediverseMeta #CWFediMeta #CWFediverseMeta #Fediverse #Mastodon #MastodonAPI #FediverseDevelopment
hub.netzgemeinde.euNetzgemeinde/Hubzilla
Replied in thread
@Luca Sironi It depends. Not everything works well frontless because not everything works well with a frontend made for Mastodon.

Hubzilla, for example, has a UI that's largely stuck in 2012. Also, it doesn't have the Mastodon client API implemented. But a frontend designed for Mastodon couldn't even cover 5% of Hubzilla's features. It would not grant access to features that are actually critical for operating a Hubzilla channel such as any parts of the permissions system.

And that's actually one of the reasons why Hubzilla doesn't have the Mastodon client API implemented: The only UI that can sufficiently harness Hubzilla's power is Hubzilla's own native Web UI.

#Long #LongPost #CWLong #CWLongPost #FediMeta #FediverseMeta #CWFediMeta #CWFediverseMeta #MastodonAPI #Hubzilla
MastodonLuca Sironi (@luca@sironi.tk)206 Posts, 1.24K Following, 633 Followers · (sono su mastodon, se su Bluesky 🦋 non seguite @ap.brid.gy , non vi vedo!) foto su @underscorner.pixelfed.uno.ap.brid.gy email➡ luca@sironi.tk Sono un informatico, vivo a Bucarest. Praticamente un migrante economico. Sto bene in montagna, specie se e' la mia Castione della Presolana ...prima de parlar, tasi (sul fediverso dal 2019, anche se poi sul serio dal novembre 2022)

Creating a generic "Log-in with Mastodon" service

shkspr.mobi/blog/2024/12/creat

Let's say you have a website - your_website.tld - and you want people to log in to it using their Mastodon account.

For a traditional social-media site like Twitter or Facebook, you would create an OAuth app on the service that you want. But there are hundreds of Mastodon servers. So you need to create a new app for each one. That sounds hard, but it isn't. Well… not too hard.

Here's some code adapted from Infosec.press. It's all written using cURL on the command line - so you should be able to adapt it to your preferred programming language.

Register an app on the user's Mastodon instance

Let's assume the user has given you the name of their Mastodon server - example.social

You then send a request for an app to be created on example.social with your website's details. All it requests is the ability to read a user's details, nothing else.

curl -X POST \ -F "client_name=Login to your_website.tld" \ -F "redirect_uris=https://your_website.tld/oauth/mastodon?server=example.social&" \ -F "scopes=read:accounts" \ -F "website=https://your_website.tld" \ -A "user-agent/0.1" https://example.social/api/v1/apps

You can set the User Agent to be anything suitable. Some servers won't work if it is omitted.

If the request was successful, example.social will send you this JSON in response:

{  "id": "12345",  "name": "Login to your_website.tld",  "website": "https://your_website.tld",  "scopes": [    "read:accounts"  ],  "redirect_uris": [    "https://your_website.tld/oauth/mastodon?server=example.social&"  ],  "vapid_key": "qwertyuiop-asdfghjkl-zxcvbnm",  "redirect_uri": "https://your_website.tld/oauth/mastodon?server=example.social&",  "client_id": "qw_asdfghjkl_zxcvbnm",  "client_secret": "qwertyuiop1234567890"}

Save the server's address, the client_id, and the client_secret. You will need all three later.

The user logs in to their Mastodon instance

You need to redirect the user to their server so they can log in. You need to construct a Mastodon URl using the data you received back. Don't forget to URl encode the redirect_uri.

For example, redirect the user to:

https://example.social/oauth/authorize?client_id=qw_asdfghjkl_zxcvbnm&scope=read:accounts&redirect_uri=https://your_website.tld/oauth/mastodon%3Fserver=example.social%26&response_type=code

When the user visits that URl they can then log in. If they're successful, they'll be redirected back to your server using your specified redirect URI:

https://your_website.tld/oauth/mastodon?server=example.social&code=qazwsxedcrfvtgbyhnujm

Get a Bearer token

Your website has received a GET request with the user's server name and an authorisation code. As per the Mastodon documentation, your app uses that code to request a Bearer token:

curl -X POST \ -F "client_id=qw_asdfghjkl_zxcvbnm" \ -F "client_secret=qwertyuiop1234567890" \ -F "redirect_uri=https://your_website.tld/oauth/mastodon?server=example.social&" \ -F "grant_type=authorization_code" \ -F "code=qazwsxedcrfvtgbyhnujm" \ -F "scope=read:accounts" \ -A "user-agent/0.1" https://example.social/oauth/token

If that's worked, the user's server will return a Bearer token like this:

{    "access_token": "abcdefg_123456",    "token_type": "Bearer",    "scope": "read:accounts",    "created_at": 1732916685}

Get the user's details

Finally(!) you can use that token to verify the user's credentials with the server:

curl \ -H "Authorization: Bearer abcdefg_123456" \ -A "user-agent/0.1" https://example.social/api/v1/accounts/verify_credentials

If that works, you'll get back all the user's details. Something like this:

{    "id": "7112",    "username": "Edent",    "acct": "Edent",    "display_name": "Terence Eden",    "url": "https://mastodon.social/@Edent",    "avatar": "https://files.mastodon.social/accounts/avatars/000/007/112/original/37df032a5951b96c.jpg",...}

Putting it all together

  1. User providers their Mastodon instance's domain name
  2. Your service looks up the domain name in its database
    • If there are no results, request to create a new app on the Mastodon instance and save the returned client_id and client_secret
  3. Redirect the User to their Mastodon instance, using a URl which contains the client_id & callback URl
  4. User logs in to their Mastodon instance
  5. The User's Mastodon instance redirects the User to your service's callback URl which includes an the instance's domain name and User's authorisation code
  6. Your service reads the User's domain name and authorisation code
  7. Your service exchanges those details for a Bearer token
  8. Your service uses the Bearer token to get the User's account details

Next steps?

This basic code works. For my next trick, can I integrate it into Auth0?

Terence Eden’s Blog · Creating a generic "Log-in with Mastodon" service
More from Terence Eden

Is it possible to mute a specific word but only from a specific user?

Example:
I want to mute all posts containing "football" from @ Bob - but I want to see football posts in general, and I don't want to totally mute Bob.

I can't see any way to do that on the web or in Android apps. Am I missing something, or is it not possible?

Replied in thread
@Strypey Hubzilla does federate with Mastodon. In case you haven't noticed, but I'm writing to you from Hubzilla. It just requires ActivityPub to be activated both on a hub level (it is by default) and on a channel level (it is not by default). So what I meant was that Hubzilla does not have the Mastodon client API implemented, and so you can't use Hubzilla with a Mastodon phone app.

But seriously, for one, Hubzilla is structurally so far away from Mastodon that this couldn't work anyway, I guess. I don't think the Mastodon client API could be bent in such a way that it works with an architecture that has multiple channels, multiple identities on the same login, not to mention that the Mastodon client API probably couldn't handle nomadic identity with its side-effects. Even if the Mastodon client API could, Mastodon apps couldn't because almost all of them are geared towards Mastodon and only Mastodon.

Which leads me to the second point: Even if you could connect Hubzilla to a Mastodon phone app, you couldn't even use 5% of Hubzilla's features because almost all Mastodon phone apps only cover Mastodon's features, and I guess that some of those apps which already existed in 2022 still only cover Mastodon 3's features.

This is far from "better than nothing". Apart from people who have only just switched from Mastodon to Hubzilla still with Twitter on the brain, nobody on Hubzilla would refer to such massive limitations as "better than nothing". Besides, not being able to use an app is not "nothing". Hubzilla is one of the few Fediverse server applications that can be installed as a Progressive Web App. And if that doesn't work, you can use it in a browser. In other words, there's always the Web UI.

Just about all Hubzilla veterans would vastly prefer the Web UI over not being able to use text formatting (not possible on Mastodon), not being able to embed images in a post (not possible on Mastodon), not being able to add alt-text to images (works vastly different on Mastodon), not being able to add titles to posts (not possible on Mastodon) and not even being able to select a channel on their account that isn't the default (Mastodon doesn't have channels either). And that's only the tip of the iceberg.

One of the reasons why there isn't a Hubzilla phone app with a fully native mobile UI is because this UI would have to be absolutely massive. The app would end up more complex than FairEmail. A good app should offer all the same features as the Web UI. But Hubzilla itself is fully geared towards the desktop, feature-wise, handling-wise and in its philosophy. Don't forget that Hubzilla was not made as a Twitter replacement.

Lastly, neither @Mario Vavti nor @Harald Eilertsen is willing to add more proprietary, non-standard, Mastodon-exclusive technology to Hubzilla than absolutely necessary, if at all. And a client API that's made for something completely and utterly different from Hubzilla and that won't even work properly with Hubzilla is far from "absolutely necessary". Hubzilla rather indulges in independence from Mastodon.

#Long #LongPost #CWLong #CWLongPost #FediMeta #FediverseMeta #CWFediMeta #CWFediverseMeta #Mastodon #MastodonAPI #MastodonApps #Hubzilla
Mastodon - NZOSSStrypey (@strypey@mastodon.nzoss.nz)37.6K Posts, 2.94K Following, 2.91K Followers · Free human being of this Earth. Pākeha in Aotearoa. Be excellent to each other! Matrix: @strypey:matrix.iridescent.nz All my posts here are CC BY-SA 4.0 (or later). #Vegan #Permaculture #PeerProduction #SoftwareFreedom #PlatformCooperatives #FreeCode #CreativeCommons #SciFi #Comedy #Juggling #fedi22