cross-posted from: https://programming.dev/post/50677034

Hi everyone,

I’m looking for recommendations for an Android Fediverse client that does not send user-agent information (device or client details) to servers. Ideally, it should support both Mastodon and Lemmy, or other Fediverse platforms as well.

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

why not just use your web browser?

  • source
  • hideshow 4 child comments
  • [–] 4 points 2 months ago (1 child)

    Did they not ask for something that wouldn't send UA info?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 5 points 2 months ago (2 children)

    you can't do http communication with an empty UA string iirc. i assumed they were asking for something generic/non-unique that lets them blend into other users

  • source
  • parent
  • hideshow 4 child comments
  • [–] [S] 2 points 2 months ago

    I just checked, they do send user agent to lemmy server.

    For example

        final appVersion = getCurrentVersion(removeInternalBuildNumber: true, trimV: true);
        return {
          'User-Agent': 'Thunder/$appVersion',
          'Content-Type': 'application/json',
          'Accept': 'application/json',
          if (account.jwt != null) 'Authorization': 'Bearer ${account.jwt}',
    
  • source
  • parent