this post was submitted on 10 Mar 2024
61 points (95.5% liked)

Fediverse

27506 readers
1292 users here now

A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, KBin, etc).

If you wanted to get help with moderating your own community then head over to [email protected]!

Rules

Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration), Search Lemmy

founded 1 year ago
MODERATORS
 

I'm trying to find an android mastodon app that can handle links from outside the app and open them in the app. Tusky is not going to implement this feature request and I haven't seen anything from the official app nor Fedilab.

It really feels like not being able to open mastodon links in an app is what's holding me back from using Mastodon more. I don't always find Mastodon content from within and is like to be able to interact with them more.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 9 points 5 months ago (2 children)

There is no easy way to implement it at the app level, because apps have no way of knowing whether any given link is a mastodon link or not

[–] [email protected] 3 points 5 months ago* (last edited 5 months ago) (4 children)

Yeah, you would have to maintain a list of all Mastodon instance domain names, and Google requires this list to be baked in at build time of the app, so updating it requires updating the whole app and there's no way to dynamically detect that this link is a Mastodon link.

This isn't to say that it can't be done, Newpipe does this for Invidious/Piped instances, but yeah, it's a good bit of work...

[–] [email protected] 3 points 5 months ago* (last edited 5 months ago)

it doesn't report itself as mastodon in the header or something? That would have been useful.

edit: yeah, no. https://github.com/mastodon/mastodon/issues/23939

[–] [email protected] 1 points 5 months ago (1 children)

Maybe some browser extension for like firefox mobile?

[–] [email protected] 2 points 5 months ago (1 children)

What I could theoretically imagine, is that an extension could give it a custom URL scheme, like mastodon://mastodon.social/v1/..., and then the various Mastodon apps could register an intent/open handler for that. But yeah, again, quite a bit of effort.

Alternatively, the apps could offer a secondary Share-action, which tries to open the link instead of creating a post from it...

[–] [email protected] 1 points 5 months ago

That's a good idea

[–] [email protected] 1 points 5 months ago (1 children)

It can't query this info externally occasionally...?

[–] [email protected] 1 points 5 months ago

No. It must be in the app already. It's for security reasons.