• Blackmist@feddit.uk
    link
    fedilink
    English
    arrow-up
    1
    ·
    13 days ago

    Ah, the 200 Go Fuck Yourself pattern.

    I use HTTP error codes in my API, and still occasionally see a GET /resource/{“error”:“invalid branchID provided”} from people who don’t seem to know what they are.

  • RizzoTheSmall@lemm.ee
    link
    fedilink
    English
    arrow-up
    1
    ·
    13 days ago

    I know an architect who designs APIs this way. Also includes a status code in the response object because why have one status code when you can have two, potentially contradictory, status codes?

    • boonhet@lemm.ee
      link
      fedilink
      arrow-up
      1
      ·
      13 days ago

      I inherited a project where it was essentially impossible to get anything other than 200 OK. Trying to use a private endpoint without logging in? 200 OK unauthorized. Sent gibberish instead of actual request body format? 200 OK bad request. Database connection down? You get the point…

    • ByteJunk@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      13 days ago

      I may have run in your acquaintance work, stuff along the lines of

      200 OK

      { error_code: s23, error_msg: "An error was encountered when performing the operation" }

      If you happen to run into him, kindly tackle him in the groin for me.

      Thanks!

      • arendjr@programming.dev
        link
        fedilink
        arrow-up
        0
        ·
        edit-2
        13 days ago

        Well, looking at your example, I think a good case can even be made for it.

        “s23” doesn’t look like an HTTP status code, so including it can make total sense. After all, there’s plenty of reasons why you could want custom error codes that don’t really align with HTTP codes, and customised error messages are also a sensible use case for that.

        Of course duplicating the actual HTTP status code in your body is just silly. And if you use custom error codes, it often still makes sense to use the closest matching HTTP status code in addition to it (so yeah, I agree the 200 in your example doesn’t make a lot of sense). But neither of those preclude good reasons for custom codes.

        • Opisek@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          13 days ago

          Still, 200 should not be returned. If you have your own codes, just return 500 alongside that custom code.

    • paequ2@lemmy.today
      link
      fedilink
      English
      arrow-up
      0
      ·
      13 days ago

      I’ve seen the status code in a JSON response before: https://cloud.google.com/storage/docs/json_api/v1/status-codes#401-unauthorized

      One reason I can think of for including it is that it may make it easier for the consumer to check the status code if it’s in the JSON. Depending on how many layers of abstraction you have, your app may not have access to the raw HTTP response.

      Although, yeah you lose the single source of truth though.

      • zalgotext@sh.itjust.works
        link
        fedilink
        arrow-up
        1
        ·
        13 days ago

        Depending on how many layers of abstraction you have, your app may not have access to the raw HTTP response.

        That sounds like either over-abstraction or bad abstraction then

  • renzev@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    8 days ago

    This is a good practice tho. The HTTP code describes the status of the HTTP operation. Did the server handle it? No? Was the url not found? Did it time out? Was the payload too large? And the JSON describes the result of the backend operation. So 200 OK with error: true means that your HTTP request was all good, but the actual operation bugged out for whatever reason. If you try to indicate errors in the backend with a HTTP error code, you quickly get confused about which codes can happen for what reason.

    • Eager Eagle@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      13 days ago

      That’s not what HTTP errors are about, HTTP is a high level application protocol and its errors are supposed to be around access to resources, the underlying QUIC or TCP will handle most lower level networking nuances.

      Also, 5xx errors are not about incorrect inputs, that’s 4xx.

      • Mak'@pawb.social
        link
        fedilink
        English
        arrow-up
        1
        ·
        13 days ago

        …HTTP is a high level application protocol and its errors are supposed to be around access to resources…

        I’ve had fellow developers fight me on this point, in much the same way as your parent post.

        “If you return a 404 for a record not found, how will I know I have the right endpoint?”

        You’ll know you have the right endpoint because I advertised it—in Open API, in docs, etc.

        “But, if /users/123 returns a 404, does that mean that the endpoint can’t be found or the record can’t be found?”

        Doesn’t matter. That resource doesn’t exist. So, act appropriately.

        • Takumidesh@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          13 days ago

          It’s not like you can’t return a body with the 404 that specifies that the user itself is not found versus the ending being wrong.

  • tiredofsametab@fedia.io
    link
    fedilink
    arrow-up
    0
    ·
    13 days ago

    me with gRPC error codes: nil, parameter error, app error – OK, you fucked up, we fucked up. Edit: forgot NotFound.

    I really should read about the various ones that exist at some point, but I’ve always got bigger fires to put out.

    Edit, since it seems unclear, gRPC != HTTP and does not use the same status codes. I meant that I felt like I was using fewer than I should, though I just checked and basically not.

    • dan@upvote.au
      link
      fedilink
      arrow-up
      0
      ·
      13 days ago

      This is basically the difference between HTTP 4xx and 5xx error codes. 4xx means the client did something wrong (invalid request, tried to load something that doesn’t exist, doesn’t have access), whereas 5xx means the request was OK but something broke on the server.

  • CrackedLinuxISO@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    13 days ago

    At a prior job, our API load balancers would swallow all errors and return an HTTP 200 response with no content. It was because we had one or two clients with shitty integrations that couldn’t handle anything but 200. Of course, they brought in enough money that we couldn’t ever force them to fix it on their end.

    • herrvogel@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      13 days ago

      I once worked on a project where the main function would run the entire code in a try-catch block. The catch block did nothing. Just returned 200 OK. Didn’t even log the error anywhere. Never seen anything so incredibly frustrating to work on.

  • madcaesar@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    13 days ago

    Here I am preferring 200, with success boolean / message string…

    Iike HTTP errors codes for real fuck up’s, if I see 500 somethings fucked in the app, otherwise a standardised json response body seems way easier

    • fuzzzerd@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      13 days ago

      What about both? User supplies bad input? HTTP 400 with response body json describing the error in a standard format?