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.

  • hardful9856@programming.devOP
    link
    fedilink
    arrow-up
    1
    ·
    2 days 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}',