this post was submitted on 14 Sep 2025
727 points (99.5% liked)

Programmer Humor

26332 readers
2313 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Slotos@feddit.nl 19 points 1 day ago (2 children)

JSON API almost always means “not REST”. In other words, it works as intended.

[–] JackbyDev@programming.dev 7 points 23 hours ago

I don't wanna be pedantic but most things we call REST aren't REST. The original definition of REST is what we typically call HATEOAS. So when you say JAON API almost always means not REST you need to qualify that.

[–] Aatube@kbin.melroy.org 6 points 1 day ago (3 children)

how would you return metadata or more detailed error codes?

[–] Slotos@feddit.nl 5 points 1 day ago (1 children)

However you like, REST doesn’t dictate anything there. Just be consistent and use hypermedia.

JSON APIs almost never follow REST because they almost never use JSON as hypertext. Worse, no complete stable hypertext JSON standard exists. There’s JSON-HAL, but it lacks a way to represent resource templates (think HTML’s <form>).

Therefore, with JSON APIs ignoring one of the most basic idea behind REST, why would anyone expect them to follow another idea of REST - consistency?

REST is a deceptively simple concept. Any time you build an HTML website a human can navigate without consulting documentation, you’re doing it better than vast majority of swagger documented corporate APIs.

[–] jj4211@lemmy.world 1 points 1 hour ago

Fun fact, I actually did implement JSON-HAL and peers wondered why I was putting this "silly _links dictionary member" in there.

I'll say I've seen other REST APIs using json and at least honor the concept of hypermedia, but in a useless way. They'll have links specified, but even within their API no consistency on what dictionary keys would refer to related resources versus data.

[–] eager_eagle@lemmy.world 5 points 1 day ago

returning a 400 never prevented me from adding more info to the response

[–] tempest@lemmy.ca 3 points 1 day ago (1 children)

The argument probably goes something like " if you adhere strictly to REST the error codes are all you need" and then metadata can be sent in response headers.

[–] Aatube@kbin.melroy.org 3 points 1 day ago (3 children)

how should a REST API respond to the client sending a URL the ends in a string instead of a numeric ID? like api.social/users/ceeforayteen instead of api.socail/users/11037

[–] locuester@lemmy.zip 7 points 1 day ago (1 children)

I would do a 400 (Bad Request). Then, with varying amounts of detail depending on the scale of the project and the framework capability, the response body would be something like: { “error”:true, “reason”: “validation”, “detail”: “user id should be numeric” }

[–] Aatube@kbin.melroy.org 2 points 1 day ago (1 children)

that's what i would do too—a JSON response. or is that not what "JSON API" means?

[–] locuester@lemmy.zip 3 points 13 hours ago* (last edited 12 hours ago) (1 children)

A RESTful service is (usually as of today) a JSON API. They aren’t mutually exclusive things.

There’s no black and white definition there.

However, when someone is creating a RESTful service, they’re stating that they’ll be paying mind to HTTP Verbs and status codes as a fundamental part of their design.

In the original image posted, that dev clearly wasn’t paying mind to the HTTP layer and as such a commenter called it just a “JSON API”, which is the catchall, ugly, Wild West, typical way of doing things (always return 200, errors are in the json).

Once again tho, it’s not black and white. Others can and will disagree and want to be pedantic. I’ve been a professional dev for 35 years, devs love to argue abt this shit.

[–] 0x0@lemmy.zip 2 points 6 hours ago

devs love to argue abt this shit.

Tabs vs spaces comes to mind.

[–] tempest@lemmy.ca 3 points 1 day ago

Depends on the verb and the application. If the string is valid 200, if it isn't 400, 404.

It’s still just another type of ID so you can do lookups on it. Nothing would change. UUIDs are used all the time.