Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)IT
idunnololz_test @lemmy.ml
Posts 7
Comments 25
summittestcommunity @lemmy.world idunnololz_test @lemmy.ml

Test post

This is a test post

2
meirl
  • Could still be a software issue. Someone said this already but it could be possible that Lemmy.world is using a load balancer and multiple servers. These two servers' authentication tokens may be out of sync. So if you hit server 1 and you are sign in to server 1, you're good. If you hit server 2, you're signed out all of a sudden. This can also explain why the issue started to happen abruptly today. It's possible the load on the server wasn't that bad yesterday so the load balancer didn't kick in. This is all speculation. Will have to wait for an official message to confirm anything.

  • Server side bug with lemmy.world and intermitent authentication.
  • Signing in. Most websites/apps will probably also grab your unread count, and maybe even your subscription feeds.

    Another example is checking your inbox. Lemmy actually has 3 inboxes: mentions, replies and PMs. A lot of websites/apps bundle these three so they will need to check all 3 inboxes via 3 API calls.

  • Server side bug with lemmy.world and intermitent authentication.
  • It's based on my understanding of how servers work and my tests. There is obviously always room for error, but I'm like 99% confident I'm right.

    Also AFAIK lemmy doesn't kick you out because you signed in elsewhere.

  • Server side bug with lemmy.world and intermitent authentication.
  • The issue is server sided so it will not matter what you use unfortunately. Technically a temp but terrible fix is to keep retrying on 400s (not signed in) until a 200 (success) is returned. This is terrible because you pretty much never want to retry for 400 errors because 400 errors are client side errors (except in this case).

  • meirl

    Context: https://lemmy.ml/post/1953164

    45
    Server side bug with lemmy.world and intermitent authentication.
  • Login in likely always succeeding. The issue is that whatever app/website you use will make additional API calls afterwards (eg. fetch posts or fetch unread count). Each of those calls have a 1-in-2 chance to succeed and if any of them fail, they all fail and you will be booted out.

    Lemmy is now an RNG game. We must prayge to rngesus before making any actions.

  • Server side bug with lemmy.world and intermitent authentication.

    I am currently getting signed out every minute from lemmy.world. This is not a client side cache issue. I tested making API calls from the command line (with curl) with no cache and the issue still occurs. One call I get the correct response, the next I get a 400 telling me im not signed in.

    I'm primarily testing with the https://lemmy.world/api/v3/user/unread_count api endpoint. I'm not sure if this issue occurs with all endpoints.

    Reproduction steps:

    1. Get a lemmy.world JWT token for your account using your desired method (eg. postman).
    2. curl https://lemmy.world/api/v3/user/unread_count?auth={JWT_TOKEN_HERE}
    3. Note the 400 error. If you do not get an error repeat step 2.

    Edit

    This issue only seems to affect lemmy.world so a temporary workaround is to use a different instance for the time being.

    81
    summittestcommunity @lemmy.world idunnololz_test @lemmy.ml

    Ttttertert

    Retertertre

    2
    summittestcommunity @lemmy.world idunnololz_test @lemmy.ml

    Test3

    Test3

    2
    summittestcommunity @lemmy.world idunnololz_test @lemmy.ml

    Sdfsdf

    Sdfsdfsdf

    2

    What is the best way to mark a post as read from the API?

    Hello! I'm the developer of Summit, one of the Lemmy apps.

    I want to be able to mark a post as read using an API call.

    I understand that fetching the post itself using the account JWT will mark the post as read for that account, however this also fetches a lot of data.

    Trying to be as server friendly as possible, what is the least resource intensive way to mark a post as read and nothing else?

    Also if there is a better place to ask this, please let me know.

    3